Encountered : A system error has occurred while locking, pls help

Dear All..
pls help..
while executing some of our remote function module we encountered some locking error.. the message returned by SAP is :
A system error has occurred while locking
from message class : M3 #021
the remote function module is running bapi_goodsmvt_create in background..
the question is.. why this error occured and how to solve it ? and what is the root cause.. ?
because the error is only happened once (until now) we cannot simulate to get the error again.. so it is hard to find out the root cause..
thanks for the help..
sasmente

Hi,
I am also having the same problem. I am running the BAPI_MATPHYSINV_CHANGECOUNT' to count the Articles.
When I print the error on screen, some the data shown as counted. Some are not changed and some with the following error.
System error while locking the data
Furthermore I went to the BASIS and saw that when we run this particular program its showing the locks on MARC and several tables with the same System ID from which we run the program
Can anyone come up ? Its getting too hard to resolve.

Similar Messages

  • A system error has occurred while locking

    Hi, we encountered the error "A system error has occurred while locking"  when executed transaction mm01.  They said it's because the same material was launched in VL02n (outbound delivery) How can I check if it was really because of VL02n?  they said that the lock was already deleted by Basis.  Is there any tcode I can check where it really came from? thanks so much!

    Hi,
    If you are authorised for TCode - SE37 then execute the Function Module "TRANSACTION_CALL_VIA_RFC" and then enter TCode SM12 and execute. And then follow the option as suggested in earlier post.

  • BAPI_GOODSMVT_CREATE ERROR: A System Error Has Occurred While Locking

    Hi All,
    I am having a problem with a Z program that I am writing.
    Basically, it uses the BAPI mentioned in the title. The program will read excel file that is being uploaded, and then will segregate the line items by 200 lines.
    That means, if I were to upload 1000 line items, the BAPI will be called and executed 5 times (1000/200 = 5).
    However, when trying to upload 10000 line items, I received this error after around 3000 line items.
    "A system error has occurred while locking".
    This happens when IMPORT parameter TEST_RUN is set to 'X'.
    I found this after some googling: http://sap.ittoolbox.com/groups/technical-functional/sap-basis/lock-entry-system-error-1674434
    I am hoping for your expert thoughts on this.
    Thank you.

    BAPI TO Upload Inventory Data
    * GMCODE Table T158G - 01 - MB01 - Goods Receipts for Purchase Order
    *                      02 - MB31 - Goods Receipts for Prod Order
    *                      03 - MB1A - Goods Issue
    *                      04 - MB1B - Transfer Posting
    *                      05 - MB1C - Enter Other Goods Receipt
    *                      06 - MB11
    * Domain: KZBEW - Movement Indicator
    *      Goods movement w/o reference
    *  B - Goods movement for purchase order
    *  F - Goods movement for production order
    *  L - Goods movement for delivery note
    *  K - Goods movement for kanban requirement (WM - internal only)
    *  O - Subsequent adjustment of "material-provided" consumption
    *  W - Subsequent adjustment of proportion/product unit material
    report zbapi_goodsmovement.
    parameters: p-file like rlgrap-filename default
                                     'c:\sapdata\TEST.txt'.
    parameters: e-file like rlgrap-filename default
                                     'c:\sapdata\gdsmvterror.txt'.
    parameters: xpost like sy-datum default sy-datum.
    data: begin of gmhead.
            include structure bapi2017_gm_head_01.
    data: end of gmhead.
    data: begin of gmcode.
            include structure bapi2017_gm_code.
    data: end of gmcode.
    data: begin of mthead.
            include structure bapi2017_gm_head_ret.
    data: end of mthead.
    data: begin of itab occurs 100.
            include structure bapi2017_gm_item_create.
    data: end of itab.
    data: begin of errmsg occurs 10.
            include structure bapiret2.
    data: end of errmsg.
    data: wmenge like iseg-menge,
          errflag.
    data: begin of pcitab occurs 100,
            ext_doc(10),           "External Document Number
            mvt_type(3),           "Movement Type
            doc_date(8),           "Document Date
            post_date(8),          "Posting Date
            plant(4),              "Plant
            material(18),          "Material Number
            qty(13),               "Quantity
            recv_loc(4),           "Receiving Location
            issue_loc(4),          "Issuing Location
            pur_doc(10),           "Purchase Document No
            po_item(3),            "Purchase Document Item No
            del_no(10),            "Delivery Purchase Order Number
            del_item(3),           "Delivery Item
            prod_doc(10),          "Production Document No
            scrap_reason(10),      "Scrap Reason
            upd_sta(1),            "Update Status
          end of pcitab.
    call function 'WS_UPLOAD'
      exporting
        filename                      = p-file
        filetype                      = 'DAT'
    * IMPORTING
    *   FILELENGTH                    =
      tables
        data_tab                      = pcitab
    * EXCEPTIONS
    *   FILE_OPEN_ERROR               = 1
    *   FILE_READ_ERROR               = 2
    *   NO_BATCH                      = 3
    *   GUI_REFUSE_FILETRANSFER       = 4
    *   INVALID_TYPE                  = 5
    *   OTHERS                        = 6
    if sy-subrc <> 0.
      message id sy-msgid type sy-msgty number sy-msgno
              with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      exit.
    endif.
    gmhead-pstng_date = sy-datum.
    gmhead-doc_date = sy-datum.
    gmhead-pr_uname = sy-uname.
    gmcode-gm_code = '01'.   "01 - MB01 - Goods Receipts for Purchase Order
    loop at pcitab.
      itab-move_type  = pcitab-mvt_type.
      itab-mvt_ind    = 'B'.
      itab-plant      = pcitab-plant.
      itab-material   = pcitab-material.
      itab-entry_qnt  = pcitab-qty.
      itab-move_stloc = pcitab-recv_loc.
      itab-stge_loc   = pcitab-issue_loc.
      itab-po_number  = pcitab-pur_doc.
      itab-po_item    = pcitab-po_item.
      concatenate pcitab-del_no pcitab-del_item into itab-item_text.
      itab-move_reas  = pcitab-scrap_reason.
      append itab.
    endloop.
    loop at itab.
      write:/ itab-material, itab-plant, itab-stge_loc,
              itab-move_type, itab-entry_qnt, itab-entry_uom,
              itab-entry_uom_iso, itab-po_number, itab-po_item,
                                                  pcitab-ext_doc.
    endloop.
    call function 'BAPI_GOODSMVT_CREATE'
      exporting
        goodsmvt_header             = gmhead
        goodsmvt_code               = gmcode
    *   TESTRUN                     = ' '
    * IMPORTING
        goodsmvt_headret            = mthead
    *   MATERIALDOCUMENT            =
    *   MATDOCUMENTYEAR             =
      tables
        goodsmvt_item               = itab
    *   GOODSMVT_SERIALNUMBER       =
        return                      = errmsg
    clear errflag.
    loop at errmsg.
      if errmsg-type eq 'E'.
        write:/'Error in function', errmsg-message.
        errflag = 'X'.
      else.
        write:/ errmsg-message.
      endif.
    endloop.
    if errflag is initial.
      commit work and wait.
      if sy-subrc ne 0.
        write:/ 'Error in updating'.
        exit.
      else.
        write:/ mthead-mat_doc, mthead-doc_year.
        perform upd_sta.
      endif.
    endif.
    *       FORM UPD_STA                                                  *
    form upd_sta.
      loop at pcitab.
        pcitab-upd_sta = 'X'.
        modify pcitab.
      endloop.
      call function 'WS_DOWNLOAD'
        exporting
          filename                      = p-file
          filetype                      = 'DAT'
    * IMPORTING
    *   FILELENGTH                    =
        tables
          data_tab                      = pcitab
    * EXCEPTIONS
    *   FILE_OPEN_ERROR               = 1
    *   FILE_READ_ERROR               = 2
    *   NO_BATCH                      = 3
    *   GUI_REFUSE_FILETRANSFER       = 4
    *   INVALID_TYPE                  = 5
    *   OTHERS                        = 6
    endform.
    Code Formatted by: Alvaro Tejada Galindo on Dec 26, 2008 10:20 AM

  • A system error has occured while locking

    Message no. M3021 : A system error has occured while locking
    I get this message in TCODE MM42 (IS RETAIL) after mass updating articles using TCODE MM46.
    The lock table size was increased from 4 MB to 10 MB and still the issue occurs. It looks the lock table can store only 3600 entries, is there a way to increase number of entries.
    Thanks
    Jagadhish Natarajan

    First, is this mass update going to happen on reguarly?
    If no - you may want to further increase enque/table_size until it can finish this one-time run of the mass update.
    If yes - you may want to work with your SAP basis guy and read note 13907.  From your side, you may need to reduce the volume of this mass update.  From the basis side, they need to determine a proper size for the enqueue table size.

  • ERROR - A system error has occured in lock management

    Dear All ,
    I have a major issue in my workflow in production client  .  In SWEL  there are some workflows which
    got started & then  error occured as per the message " A system error has occured in lock management " and no workitem gets created .
    This issue happened just 1 day back and still continues somtimes .
    If any one have any idea on the issue , what is the root cause of the issue , please suggest how to solve the same .
    Regards
    Prabhu

    No WF-BATCH is not locked . This issue does not happen every time , it happens some times .other wise workflow runs fine .
    I will tell you when i checked abot the error message by clicking F1 help i got the below message details-
    An error occurred in lock management when attempting to set a lock on table SWWWIHEAD.
    The data cannot be processed at the moment. The data is displayed.
    So i think there is some issue happens in updating the entry in the table which happens some times , and gets rectified automatically . But the workflow which gets affected by this error does not start .
    so any idea on the same .
    Regards
    Prabhu

  • An error has occurred while accessing SQL database or system resources. If this is the first time you have seen this message, please try again later. If this problem persists, please contact your administrator.

    I have SP Server 2010, and when I try to DELETE a rule within an existing Audience, "Property (Account Name) = domain/username", I get this error, "An error has occurred while accessing SQL database or system resources. If this
    is the first time you have seen this message, please try again later. If this
    problem persists, please contact your administrator."  When I try to "MODIFY" the rule I get this error, "One or more values typed on this page are not valid. Check the text for the indicated fields." 
    The last time I checked it was working, I'm not aware of any new updates installed recently?  I did a full Profile Synchronization as well, but still not working, please advise? -- Evenstarline

    Hi Sara,
    First of all thank you very much for your prompt responses. Here are my comments to each of your suggestions below, and just to let you know I am using a Farm Admin account.  I
    was able to do this way after we upgraded from SP 2007 to SP 2010 as well.   I would like to mention I'm not a SP expert, just been given the responsibility due to another person handling it just left, so apologize with some of
    my novice questions below?
    1. When I change the Operators to "Contains" or "Not Contains" get generates this error below.
         Error generating in red towards top of the audience page..."One or more values typed on this page are not valid.  Check the text for the indicated fields."
         Error occurred where you enter your "Value"..."Could not resolve the user identity. Please re-enter the account name."
    2. We have a 3-server-tier topology (SPWeb, SPDB, and SPFarm).  Does the updates only apply to where the Central Admin is installed, which is the "SPFarm"?  I checked all
    3 servers, and NONE of the updates (KB2899494, KB2889845, and KB2883055) you'd mentioned are installed.
    3. I'm new to IISRET, I need to be extra cautious of what I run in production, is this safe to run with no problem?  What does it do?  And How do I run it?
    4. I'm also new to viewing the ULS log.  I'd just downloaded a viewer for it.  I'm assuming the only logs I need to be concern with viewing are within the SPAdmin (where Central
    Admin is installed)?  There's so many of them, what should I be looking for exactly?
    Evenstarline 

  • Crystal reports 2008 sp3 : An error has occurred while attempting to load t

    Hello,
    Please forgive me for posting in the CR .NET forum because we are using the full Crystal Reports 2008 product and I did not see a category for it.  If there is a better forum for this question, please let me know or feel free to move it.
    We are having trouble deploying our crystal reports 2008 reports to a Windows Server 2008 R2 server in an aspx application...
    I have been working on this issue for 4-days and cannot seem to make any progress, so I would really appreciate your help.
    Our Environment:
    Development Computer (32-bit, WinXP)
      VS2008 (fully updated, was not installed with its Crystal Reports feature)
      Crystal Reports 2008 SP3 (downloaded and installed "cr2008_sp3_fullbuild")
    Database Server (64-bit)
      "SERVER2" is a Microsoft SQL Server 2008 server, fully updated
    Web Server (64-bit)
      "SERVER3" is a Microsoft Server 2008 R2 Web server.
    We have an application that is installed on the Web server and it pulls data from the database server.
    The webpages are accessing the database properly.  There is a ShowReport.aspx webpage that has the
    CrystalReportsViewer on it.  We send parameters and logon information to ShowReport.aspx.  ShowReport
    works properly on our development computer and the report looks good, but it fails on the web server.
    We downloaded CRRuntime_12_3_mlb.msi (X86) from SAP/CR and installed it on the web server without any issues.
    Our application pool on the web server for this application is set to 32-bit mode.  When I launch the
    application, it works properly with the database and displays data on web pages, but when I try to
    view a report on ShowReport, I get the following error message:
    An error has occurred while attempting to load the Crystal Reports runtime.
    Either the Crystal Reports registry key permissions are insufficient or the Crystal Reports runtime is not installed correctly.
    Please install the appropriate Crystal Reports redistributable (CRRedist*.msi) that contains the version of the Crystal Reports runtime (x86, x64, or Itanium)  that is required.
    According to everything that I have read, I have properly matched the DLLs: On the development computer, "cr2008_sp3_fullbuild" was installed; On
    the web server, "CRRuntime_12_3_mlb.msi (X86)" was installed.  They are both Crystal Reports 2008 and not .NET.  CR.NET was not installed on our development computer, so our application was built with full Crystal Reports 2008 SP3.  On our development computer, .ENGINE is 12.0.2000.0 and
    the same version is on the web server.
    So, I am completely at a loss as to why we are encountering this error.  Help, Please!!!
    Thank you in advance,
    Mike

    Hi Mike,
    Did you set your project for X86 mode only? If not do so and rebuild and deploy your app.
    Thank you
    Don

  • An error has occurred while erasing your restore destination disk

    MacBook Pro, mid-2010 15-inch; OS X Mavericks (10.9.4); originally shipped with Snow Leopard.
    My MBP has crashed & won't start beyond the grey screen and spinning wheel. System restore from Time Machine backup won't work. I tried all these without success
    Safe mode (hold Shift during power-up)
    Verbose safe mode (hold Shift + Command + V during power-up) which reports
               ** /dev/rdisk0s2 (NO WRITE)
                   ** Root file system
                        Executing fsck_hfs (version hfs-226.1.1).
                   disk0s2: I/O error
              ...followed by some other stuff I haven't transcribed before it grinds to a halt
    Reset NVRAM (hold Option + Command + P + R during power-up)
    I can boot up ok into the Recovery partition (hold Command + R during power-up) to run Disk Utility and Time Machine.
    I can’t start from the OS X Install disk (hold C during power-up) cos my DVD drive spits out all CDs and DVDs after spinning them up. This despite cleaning with compressed air.  Tried to run AHT, the Apple Hardware Test (hold D during power-up): nada. Also running AHT from the internet - (hold Option + D during power-up), still nothing.
    I’ve verified my hard disk (all appears ok) and run Repair Disk Permissions.  This reports some problems, for example:
            Permissions differ on “System/Library/CoreServices/Feedback Assistant.app”; should be drwxr-xr-x ; they are lrwxr-xr-x .
              Unable to set owner and group ; error 22: Invalid argument
              Unable to set permissions ; error 22: Invalid argument
    Same problem (but with various different permissions) for
              “usr/lib/libruby.2.0.dylib”
              “usr/lib/libruby.dylib”
              “Applications/Safari.app/Contents/Resources/Safari.help/Contents/Resources/inde x.html”
    Also have lots where as well as unable to set owner, group and permissions the
              Group differs; should be 80; group is 0.
    Affected items are
              “Library/Printers”
              “Library/Printers/Icons”
              “Library/Printers/InstalledPrinters.plist”
    and a few dozen more for various items in subfolders of “Applications/iBooks.app/Contents”
    I don’t know if they’re linked with my problem or an irrelevant side-issue.  I don’t understand the ramifications of these wrong permissions that Disk Utility can’t repair.  And I don’t have the headspace or time to learn now either.
    I repeatedly tried system restore from Time Machine backup, but get the error:
              An error has occurred while erasing your restore destination disk.  Restart your computer and then try restoring again.
    I tried erasing the hard disk partition with Disk Utility but got the error
              Volume erase failed with error couldn't unmount disk.
    Now totally out of ideas.  Have I overlooked anything?  Is my hard drive a goner?  BTW my battery is also saying "Replace soon", but I don't know if that's relevant.  All help gratefully appreciated!

    There are several ways to back up a Mac that is not fully functional. You need an external hard drive or other storage device to hold the data.
    1. Start up from the Recovery partition, from Internet Recovery, or from a local Time Machine backup volume (option key at startup.) Launch Disk Utility and follow the instructions in this support article, under “Instructions for backing up to an external hard disk via Disk Utility.” The article refers to starting up from a DVD, but the procedure in Recovery mode is the same. You don't need a DVD if you're running OS X 10.7 or later.
    2. If Method 1 fails because of disk errors, then you may be able to salvage some of your files by copying them in the Finder. If you already have an external drive with OS X installed, start up from it. Otherwise, if you have Internet access, follow the instructions on this page to prepare the external drive and install OS X on it. You'll use the Recovery installer, rather than downloading it from the App Store.
    3. If you have access to a working Mac, and both it and the non-working Mac have FireWire or Thunderbolt ports, start the non-working Mac in target disk mode. Use the working Mac to copy the data to another drive. This technique won't work with USB, Ethernet, Wi-Fi, or Bluetooth.
    4. If the internal drive of the non-working Mac is user-replaceable, remove it and mount it in an external enclosure or drive dock. Use another Mac to copy the data.

  • MS Project 2010 - An unknown error has occurred while syncing to a SharePoint site.

    Dear all,
    I encountered a generic error when using MS Project 2010 to sync with our SharePoint 2013 on-premise. I want to clarify is it default behaviour or a bug.
    When I start MS Project 2010 professional from new -> sync to Sharepoint by type in URL and the list name. I can create a new project list successfully.  I have verified the tasks are sync to the Sharepoint and I am able to see them listed on site.
    After sync, I save the Ms Project document to local computer. Named test1.mpp. Then I close MS Project. Then open test1.mpp again and then sync immediately. This time an error show up:
    An unknown error has occurred while syncing to a SharePoint site. Ensure the SharePoint site is running and try again
    Since I didn't add anything to the mpp file, I believe it doesn't contain any invalid data blocking the sync. What would be the problem? Thanks.
    Mark

    No, I didn't. I just fill the site path like:
    http://sharepoint.com/sites/Project/
    and then the List field:
    ProjectA
    I want to clarify the sequence should be:
    After sync, I save the Ms Project document to local computer. Named test1.mpp. Then I close MS Project. Then open test1.mpp again and then sync immediately. Then error occur.

  • When taking a test for a job application the new tab opens up and tells me a system error has occurred

    I have to take a talent assessment test for a job application but when the tab comes up it tells me I have a system error has occurred. What does that mean?

    Hi Bob,
    I have question that I hope you can answer. I am trying to decide how to set up my wireless network with a 4th generation Airport Time Capsule (802.11n) with a 5th generation Airport Extreme (802.11n). I have read that you can extend your wireless network, but I am unsure which device I should have connected to the modem, etc., or what setup is the best way to utilize these devices. I want to setup my wireless network and get the most out of each device while making it so that internet connection is "excellent" throughout the house. In addition, I also want to be able to use Time Capsule or Airport Etreme to back up with Time Machine. Basically, I don't understand what it is that I have and how to use it in the best way.
    Any help with this matter would be greatly appreciated.
    Thank you,
    Michael

  • Error has occurred while updating iphoto

    error has occurred while updating iphoto

    Thanks for sharing. DId you have a question?
    There are 9 different versions of iPhoto and they run on 9 different versions of the Operating System. The tricks and tips for dealing with issues vary depending on the version of iPhoto and the version of the OS. So to get help you need to give as much information as you can. Include things like:
    - What version of iPhoto.
    - What version of the Operating System.
    - Details. As full a description of the problem as you can. For example, if you have a problem with exporting, then explain by describing how you are trying to export, and so on.
    - History: Is this going on long? Has anything been installed or deleted? - Are there error messages?
    - What steps have you tried already to solve the issue.
    - Anything unusual about your set up? Or how you use iPhoto?
    Anything else you can think of that might help someone understand the problem you have.

  • A communication error has occurred while invoking commands in SharePoint host process

    Hi All,
    I am using Virtual box to connect to Sharepoint 2013 VPC. Due to an unexpected sutdown of my machine the VPC got some issue. Now I restored it using my bak up file. But after this when I deploy my sharepoint 2013 farm solution Iam getting the following error.
    Error occurred in deployment step 'Recycle IIS Application Pool': A communication error has occurred while invoking commands in SharePoint host process: The server did not provide a meaningful reply; this might be caused by a contract mismatch, a premature
    session shutdown or an internal server error.
    What could be the issue? Any suggestions ?
    Thanks in advance...
    Regards
    Nimisha
    [email protected]

    Hi Nimisha,
    Seems that the original issue of communication error has been solved, for this new issue, it is recommended that you open a new thread which can make others easier
    to focus on one issue in one single thread.
    Best regards,
    Patrick
    Patrick Liang
    TechNet Community Support

  • SAP MII 14.0 SP5 Patch 11 - Error has occurred while processing data stream Dynamic Query role is not assigned to the Data Server

    Hello All,
    We are using a two tier architecture.
    Our Corp server calls the refinery server.
    Our CORP MII server uses user id abc_user to connect to the refinery data server.
    The user id abc_user has the SAP_xMII_Dynamic_Query role.
    The data server also has the checkbox for allow dynamic query enabled.
    But we are still getting the following error
    Error has occurred while processing data stream
    Dynamic Query role is not assigned to the Data Server; Use query template
    Once we add the SAP_xMII_Dynamic_Query role to the data server everything works fine. Is this feature by design ?
    Thanks,
    Kiran

    Thanks Anushree !!
    I thought that just adding the role to the user and enabling the dynamic query checkbox on the data server should work.
    But we even needed to add the role to the data server.
    Thanks,
    Kiran

  • Im trying to convert a PDF into an excel document and I keep getting an error message that reads "An error has occurred while trying to access the service". WHat am I doing wrong?

    Im trying to convert a PDF into an excel document and I keep getting an error message that reads "An error has occurred while trying to access the service". WHat am I doing wrong?

    it seems my subscription had expired so I signed up again.. It was still having trouble so I repeated the sign up process again.. Then it worked perfectly.. Unfortunately, I think I just subscribed twice and need to cancel one of them. Ugh. Such a pain when I'm trying to get this project completed. I'll be canceling at least one of the subscriptions in the morning. Adobe is not my favorite company right now. None of this was intuitive. And trying to get help was an absolute waste of an hour.
    Regards,
    Nathaniel
    [removed by moderator]

  • Configure Synchronization Connections An error has occurred while accessing the SQL Server database

    Hi,
    i am getting following error message
    Central Administration --> Synchronization Connections
    An error has occurred while accessing the SQL Server database or the SharePoint Server Search service.
    If this is the first time you have seen this message, try again later. If this problem persists, contact your administrator.
    Central Administration -->  Manage Profile Service: User Profile Service Application --> Manage User Properties
    Error
    An unexpected error has occurred.
    Troubleshoot issues with Microsoft SharePoint Foundation.
    Correlation ID: 3bce5a11-f2dc-4788
    Please tell how to fix it.
    iffi

    Event ID 5555 -> i have change the Timer jobs recycling time AM to PM
    for  User profile page not display  number of count in the page first check services , connection , 
    IISRESET /NOFORCE   /  timer services restart 
    Deepesh Yevle MCTS

Maybe you are looking for

  • Where to upload images on-line for storyboarding?

    Where to upload images on-line for storyboarding? Or what does it take to produce a storyboard from a Adobe Story Plus Script? Any suggestions are welcome ; )

  • JMF on Linux 64 bit os

    Hi, I am trying to install JMF on my dedicated Linux 64 bit server. When i tried to install *"jmf-2_1_1e-linux-i586.bin"* I got the following error. Any one help me for this problem. Can any one tell me how to install JMF on Linux 64 bit system.....

  • Invalid timestamp in logs

    Hi I've found this in server logs: 005-02-21 11:22:16 CET HPServer Warning Log Management The date field is probably invalid on D:\BEA\XX\XXServer\XXServer.log00238 line 518. Message ignored during search while: BEA-170014 Warning: The date field is

  • Where is the em console GUI in 10g?

    I upgraded to 10.2.0.1 from 9i. Since I didn't uninstall 9i, I can still run the em console from the 9i program menu. But what about em console in 10g? I am used to using the 9i em console and look at table contents, etc. I did find "Database Control

  • Itunes is not syncing after most recent update

    I am getting the error message "iTunes could not connect to the iPhone because the pairing record is missing"