High CPU load with Library Cache Pin wit event.

Oracle8i Enterprise Edition Release 8.1.6.0.0, 64 bit - Production
HP-UX B.11.00 U 9000/800 605309363 unlimited-user license
Currently CPU load is 100% with very less sessions in the database.
But i am finding Library Cache Pin wait event in top.
If i query v$latchholder i am not getting any rows..and in v$lacth_children
SQL> select SID,EVENT,WAIT_TIME,SECONDS_IN_WAIT,STATE from v$session_wait where EVENT='library cache pin';
       SID EVENT                                     WAIT_TIME SECONDS_IN_WAIT STATE
         8 library cache pin                                 0             863 WAITING
        90 library cache pin                                 0            3093 WAITING
        89 library cache pin                                 0            2566 WAITING
        57 library cache pin                                 0           27384 WAITING
        54 library cache pin                                 0           21029 WAITING
        53 library cache pin                                 0            7840 WAITING
        50 library cache pin                                 0            2620 WAITING
        47 library cache pin                                 0            6031 WAITING
        46 library cache pin                                 0            1241 WAITING
        41 library cache pin                                 0           15637 WAITING
       145 library cache pin                                 0             910 WAITING
       133 library cache pin                                 0            5124 WAITING
       111 library cache pin                                 0           15077 WAITING
        98 library cache pin                                 0            6563 WAITING
        94 library cache pin                                 0            2088 WAITING
        93 library cache pin                                 0            4592 WAITING
        92 library cache pin                                 0           14705 WAITING
        91 library cache pin                                 0           14798 WAITING
        36 library cache pin                                 0            1533 WAITING
        33 library cache pin                                 0            1491 WAITING
        28 library cache pin                                 0           13970 WAITING
        25 library cache pin                                 0            7630 WAITING
        11 library cache pin                                 0           12169 WAITING
        12 library cache pin                                 0            2352 WAITING
        14 library cache pin                                 0           19748 WAITING
SQL> select addr,name from v$latch where name='library cache';
ADDR             NAME
C00000006971D460 library cache
SQL> select latch#,name from v$latch_children where name='library cache';
    LATCH# NAME
       105 library cache
       105 library cache
       105 library cache
       105 library cache
       105 library cachePlease help me out to find actual cause of these latches and fix ?
-Yasser

bump
No-one?
The problem seems to have 'resolved itself' over the weekend incidentally (although I don't believe anything truly resolves itself in this manner - something must have changed).

Similar Messages

  • Library Cache Pin Wait Event (within the context of APEX)

    Hello,
    Firstly -
    Oracle Version: 10.2.0.4.0
    Apex Version: 3.0.1.00.08
    Okay, my colleague (no really! This isn't one of those "Ahem ... A friend of mine has contracted something nasty +downstairs+..."-type questions) is having problems compiling a package (using TOAD incidentally, but it's the same in SQL Developer).
    I've searched the forum and the web for a bit of help on what's maybe happening here and it appears to be related to a concurrency conflict with the package definition - from what I can understand it's a case of the package is in use by another session, therefore another session cannot alter it at the same time (which makes sense)
    "What does this have to do with APEX?"... well, he is working on this package using the following methodology:
    1. Compile the package body/spec (as necessary - body more often obviously)
    2. run an apex page which uses the code in a process, which may or may not result in the error page being displayed
    3. Making changes to the package body/spec
    repeat steps 1-3 ad nauseum...
    He is the only user directly accessing the schema (and the only user accessing the page via APEX too, although I appreciate this isn't quite the same thing).
    I was wondering if, due to the architecture of APEX (the use of session pools etc), the state of a package might be being retained in some manner, thus resulting in this library cache pin wait event? If so, is there anything I can do to mitigate against this occurring?
    p.s. the only difference I can see between this particular package and any other package in the schema is that this one interacts with blobs (including making references to the wwv_flow_files view) - with blobs being passed as parameters between procedures (thus potentially creating temporary blobs which may or may not being closed).
    Any ideas?
    p.p.s. there are also no DBMS_SCHEDULER jobs or anything that might potentially be running the code incidentally...
    Edited by: Joel_C on 11-Nov-2011 11:58
    We got our DBAs to run a bit of code to identify the blocking session:
    select
             decode(lob.kglobtyp, 0, 'NEXT OBJECT', 1, 'INDEX', 2, 'TABLE', 3, 'CLUSTER',
                          4, 'VIEW', 5, 'SYNONYM', 6, 'SEQUENCE',
                          7, 'PROCEDURE', 8, 'FUNCTION', 9, 'PACKAGE',
                          11, 'PACKAGE BODY', 12, 'TRIGGER',
                          13, 'TYPE', 14, 'TYPE BODY',
                          19, 'TABLE PARTITION', 20, 'INDEX PARTITION', 21, 'LOB',
                          22, 'LIBRARY', 23, 'DIRECTORY', 24, 'QUEUE',
                          28, 'JAVA SOURCE', 29, 'JAVA CLASS', 30, 'JAVA RESOURCE',
                          32, 'INDEXTYPE', 33, 'OPERATOR',
                          34, 'TABLE SUBPARTITION', 35, 'INDEX SUBPARTITION',
                          40, 'LOB PARTITION', 41, 'LOB SUBPARTITION',
                          42, 'MATERIALIZED VIEW',
                          43, 'DIMENSION',
                          44, 'CONTEXT', 46, 'RULE SET', 47, 'RESOURCE PLAN',
                          48, 'CONSUMER GROUP',
                          51, 'SUBSCRIPTION', 52, 'LOCATION',
                          55, 'XML SCHEMA', 56, 'JAVA DATA',
                          57, 'SECURITY PROFILE', 59, 'RULE',
                          62, 'EVALUATION CONTEXT',
                         'UNDEFINED') object_type,
             lob.KGLNAOBJ object_name,
             pn.KGLPNMOD lock_mode_held,
             pn.KGLPNREQ lock_mode_requested,
             ses.sid,
             ses.serial#,
             ses.username
        FROM
           x$kglpn pn,
           v$session ses,
           x$kglob lob,
           v$session_wait vsw
      WHERE
       pn.KGLPNUSE = ses.saddr and
       pn.KGLPNHDL = lob.KGLHDADR
       and lob.kglhdadr = vsw.p1raw
       and vsw.event = 'library cache pin'
    order by lock_mode_held descresults as follows (I've changed some object names to protect the ignorant):
    OBJECT_TYP OBJECT_NAME                   LOCK_MODE_HELD LOCK_MODE_REQUESTED        SID    SERIAL# USERNAME
    PACKAGE    PKG_FOOBAR                             2                   0        356      21694 HTMLDB_PUBLIC_U
                                                                                                      SER
    PACKAGE    PKG_FOOBAR                             0                   3        463      22309 FOOHTMLDB_PUBLIC_USER is the apex user incidentally. The session is marked in the v$session table as "inactive", the last statement being
    Begin
       Dbms_session.reset_package;
    End;Edited by: Joel_C on 11-Nov-2011 14:39

    bump
    No-one?
    The problem seems to have 'resolved itself' over the weekend incidentally (although I don't believe anything truly resolves itself in this manner - something must have changed).

  • Problem... High CPU load with HDD. Please Help

    Hello all,
    Im stuck. Ive got a MSI KA790GX which has poor HDD access/transfer, low burst rate and very high CPU load.
    As far as i know the Western Digital 640gb WD6401AALS Black should be a fast hard drive. Which according to reviews/HD Tune,
    should be:-
    Minimum 60mb/sec
    Maximum 120mb/sec
    Average 95mb/sec
    Access 12ms
    Burst 110mb/sec
    CPU 5%
    No matter what I try, i always get poor results...
    My MSI KA790GX
    Minimum 41mb/sec ~ 54mb/sec
    Maximum 104mb/sec ~ 108mb/sec
    Average 86mb/sec ~89mb/sec
    Access 12ms
    Burst 60mb/sec ~ 80mb/sec
    CPU 26% ~ 44%!!!!!!!!
    I could accept not getting the same high speed results as the review/reference, even if the burst rate sucked.
    But one of the cores goes to 50%-60% load during hdd activity. Thats just crazy!!
    I have tried...
    IDE mode, AHCI, RAID Ready, RAID Single Disk
    SATA Port 1, 2, 3, 4 + 5
    Different SATA cables
    Flashed bios, cleared bios, optimised defaults, failsafe defaults
    Windows XP 32bit, Vista 32bit, Vista 64bit. fresh installs
    MSI CD Drivers, MSI Web Drivers, AMD/ATI Web Drivers
        ... and combinations of.
    I have also tested the WD640gb Black on another older PC, with Nvidia (55?) chipset and slower (1.9ghz x2) cpu.
    Transfer rates were slightly better than my KA790GX but, Burst Rate = 115mb/sec and CPU usage = 13%.
    I also tried a Seagate 1.5tb (ST31500341AS) on both PCs,
    Nvidia chipset
    Minimum 65mb/sec
    Maximum 134mb/sec
    Average 107mb/sec
    Access 14ms
    Burst 83mb/sec
    CPU 7%
    On my MSI KA790GX
    Minimum 55mb/sec
    Maximum 120mb/sec
    Average 100mb/sec
    Access 14ms
    Burst 87mb/sec
    CPU 33%!!!!
    Could someone please please help, ive spent hours and hours on this. Its doin my head in.
    I just hope its something stupid ive missed, cos i still not used my HD4850 from christmas :-(
    Thanks.

    Sm3K3R
    Not sure how to check PIO/DMA mode on a SATA device. IDE devices show DMA enabled.
    BIOS version 1.4 - 29 December 2008, and now version 1.51
    Fredrik
    I have Vista 64, but i did try XP32 and Vista32 and got similar poor results.
    I tested HDD speed with, HD Tune 2.55 and HD Tune 3.50 trial.
    No auto-start programs really, Windows clean installs + any drivers.
    Quadrifoglio Verde
    CPU @ default 2800mhz, All mem bios options to auto/defaults
    Windows Experience Index, CPU Score = 5.3
    AMD Overdrive
     Integer Computation = 8220
     Floating Point Computation = 5325
     Memory speed = 1770
     Cache Speed = 10790
     System Performance = 7403
    Bas
    I used HDTune because I could reference to other results. Whats a better program to use?
    Windows Experience Index, HDD Score = 5.9.
    But I have no reference and cant be sure of cpu load.
    Sepher
    Bios defaults to C&C and C1E off so i have tried them. Also windows power settings, balanced/high performance.
    UPDATE
    Reinstalled Vista64 but loaded the AHCI driver from the disk config screen. This seems to have stopped the high cpu usage during disk activity.
    HDTune with Windows Power settings @ High Performance,
    Min = 52mb/sec
    Max = 106mb/sec
    Ave = 88mb/sec
    Access = 12ms
    Burst = 77mb/sec
    CPU = 3.4% 
    HDTune with Windows Power settings @ Balanced
    Min = 54mb/sec
    Max = 104mb/sec
    Ave = 87mb/sec
    Access = 12ms
    Burst = 65mb/sec
    CPU = 12%
    So now transfer speed is about 10% slower than reference. But burst speed is terrible.
    I also used IBM Feature Tool to change the HDD AAM to 'performance mode' 254 as suggested elsewhere.
    Long shot as the hdd performs ok with other hardware. same results.
    Also MSI support asked me to try a newer bios, version 1.51. same results.
    Anyone know what the AMD 7-Series Chipsets Disk Performance Utility does, and should i run it in Vista64?
    Thanks for all the replies, hope i can sort this, not played any PC games since Quake 3 on my ti4600...

  • Too high cpu load with HP 6510b

    Hello guys,
    I have a very high cpu load on my laptop even if nothing despite htop is running. I guess it's a problem with acpi because when I deactivate acpi completely over the bootline I have no such problems.
    How could I fix that?
    Thank you in advance.

    Hello B,
    unluckily noacpi doesn't help but acpi=off. That seems to be the only way to stop the high load.
    Is there any patched acpi or something else?
    I also think I picked the bad revision with fan problems and some more...

  • High CPU load with Flash on Mac Leopard

    Dear Adobe,
    I am always running the latest version of the Flash plugin on my Macbook. Ever since even with the simplest Flash movies running in a browser (no matter whether Safari, Firefox, Camino, Opera, ...) the CPU load jumps oh so high the fans will spin at full speed and the CPU starts to create subtropic temperatures. Years ago I was running a Windows PC where the CPU load wasn't even close to such high CPU loads. Oh so many Apple users would very very much appreciate Flash Player being at least close to as efficient as the Windows version.
    Thanks in advance for making Flash movies more enjoyable on the Mac platform

    Adobe need to realize that once their great product with a lot of penetration into the web ad + ria market is starting loose its ground as they simply can't address ongoing issue on their poor flash plug-in performance other than on windows platform. There are a lot of flash enthusiast out there but this poor support from the Adobe doesn't help this much further. One of the reasons why other software vendors pushing for more open standard RIA platforms other than Flash based...
    Only suggestion that I have with Adobe is that if you can not get it right then, it may help to open up flash player source to the community. I am pretty sure that there are a lot of developers out there who can help out to drive better code base for the player and in turn make flash more adopted by non non ms windows user base. At the moment, I have installed "Click2Flash" and "FlashBlock" to save majority of CPU cycle on my MacBook Pro. Imagine the impact on this for future Adobe product. All online ad will slowly move away from flash based and in turn loosing entire market share it has successfully built over the years... Well must note that MS isn't much better either... MS RDP client is permanently turned off from my system, now I'm using CoRD instead..
    I sincerely hope to see some major performance improvements in near future.

  • High CPU load with nfs4

    Has anyone noticed a high cpu load when transferring over nfs4.
    My arch box has a dual core amd with 4 gig of ram.  It has a rocketraid 2320 card being used for a 8 1TB mdadm raid 6.
    I am transferring from ubuntu -> arch box.  I am noticing high cpu on both sides.  I dont know if its an nfs issue or what.
    On the arch side I am seeing high usage from nfsd , flush-9:0, and an mdadm process.  Both cores are sitting around 50%.
    Anyone run into this or know if its an issue with nfs4? or maybe different nfs versions of ubuntu and arch.
    Thanks.

    Adobe need to realize that once their great product with a lot of penetration into the web ad + ria market is starting loose its ground as they simply can't address ongoing issue on their poor flash plug-in performance other than on windows platform. There are a lot of flash enthusiast out there but this poor support from the Adobe doesn't help this much further. One of the reasons why other software vendors pushing for more open standard RIA platforms other than Flash based...
    Only suggestion that I have with Adobe is that if you can not get it right then, it may help to open up flash player source to the community. I am pretty sure that there are a lot of developers out there who can help out to drive better code base for the player and in turn make flash more adopted by non non ms windows user base. At the moment, I have installed "Click2Flash" and "FlashBlock" to save majority of CPU cycle on my MacBook Pro. Imagine the impact on this for future Adobe product. All online ad will slowly move away from flash based and in turn loosing entire market share it has successfully built over the years... Well must note that MS isn't much better either... MS RDP client is permanently turned off from my system, now I'm using CoRD instead..
    I sincerely hope to see some major performance improvements in near future.

  • High CPU Load with Alesis Multimix Usb 2.0 mixer

    Hi everybody,
    i'm still playing around with logic studio 9, mainly mainstage 2.1.1 for a possible future live use.
    Today i tried to use my Alesis Multimix 8 usb2.0, just as the output devices, using software instruments with a m-audio keystation.
    I always get cpu peak load when playing notes, with every patch, either internal apple instrument or third party au instruments, when idle cpu load goes to about 40%...
    If i revert back to internal output / internal input, cpu load drastically goes down to 10% idle and max 50-60% with internal instruments,max 80% with 2-3 layers of third party au instruments (Omnisphere, loungelizard, m-tron)...
    I know that Alesis mac drivers for snow leopard are at a beta stage, but am i the only one experiencing this or is it a known problem?
    Thanks,
    Alex.

    Gotenks82 wrote:
    Hi Pan,
    i made a different test today...
    I know it's not the same but i tried using a guitar rig on mainstage (guitar on channel1 in the mixer), and even with 256 samples i ALWAYS get 100% cpu usage...
    then closed mainstage and opened NI Guitar Rig 3 as standalone, using the alesis as interface, with 64 samples as buffer, i cannot go over 13-14% of CPU usage (Hi quality enabled)... I know that mainstage adds more effects than the ones i selected in guitar rig 3, but the HUGE difference in cpu usage cannot be just that, i mean...
    It could be if one of the effects Mainstage was using is Space Designer.
    If it is using Space Designer try using a lesser reverb, like Gold.
    USB doesn't use that much more CPU so that's not the problem.
    You are comparing two separate guitar setups, correct? Or do you mean you're opening Guitar Rig 3 in Mainstage?
    pancenter-
    As I understand it you are opening completely different setups, correct.

  • High CPU load with no proof from processes

    I have a problem with my CPU load monitor.
    In Activity Monitor, the processes that are showing do not reflect my actual CPU load.
    At any given time the highest process shows 3% cpu load, but the percentages under the cpu tab show that the cpu is running at 50% (basically one full core processing SOMETHING).
    Now I need to figure out what this "Something" is and kill it?
    Anyone have any suggestions on how to find what bogging my system down?

    hey, i know someone linked the other post i created, however ill give you the rundown quickly with out my babble (i was hyper at the time :p)
    Go into your sharing control panel, services, turn OFF windows sharing. It seems for some reason teh netbios daemon is loading over and over again, most likely due to an error. it is restarting a few times a second creating the loads, in my acse atleast.
    let me know if it works for you, if so im going to contact apple just to inform them since the tech I spoke to had no idea what it was.
    good luck!

  • High cpu load with Skype

    Hi, i am currently using macbook pro and i am not sure why when i run skype the cpu is eat up to 90% and the fan start to make noise. is that any way to fix this issue. thanks alot. P.S i use mac os 10.7

    Yes I was trying to pinpoint the action that causes Skype to go 100%  When it does it uses two cores and the battery is drained increadibly fast.
    I will let you know if I find out.  Otherwise restarting and/or removing the $HOME/Library/Skype data does the trick of fixing it.

  • How to resolve Library Cache Pin waits?

    Hai All,
    I grant a select privilage on a table to another user. Then my session hangs. after 5 minutes a message present that is 'ORA-04021: timeout occurred while waiting to lock object....' etc.
    I query the v$session_wait and see a Library Cache pin wait present in my session. I copy the p1raw column from here and put into some x$ tables and v$session then I can identify one session using a application using that table. I kill that session . then my grant privilage query works..
    So what is library cache pin waits.. How to identify in application...How to resolve it? it resolve in database level or application level?
    Please Help..
    Shiju

    Most common cause of library cache pin wait event are
    -- Not use binding variables in the query
    -- Some one keeps modify the schema objects
    library cache pin
    This event manages library cache concurrency. Pinning an object causes the heaps to be loaded into memory. If a client wants to modify or examine the object, the client must acquire a pin after the lock.
    Wait Time: 3 seconds (1 second for PMON)
    Parameter Description
    handle address Address of the object being loaded
    pin address Address of the load lock being used. This is not the same thing as a latch or an enqueue, it is basically a State Object.
    mode Indicates which data pieces of the object that needs to be loaded
    namespace See "namespace"

  • Library cache pin when accessing apex_application_page_regions

    Hi,
    Oracle 11.2.0.3.0, APEX 4.1.1.00.23.
    I am trying to compile a procedure that access apex_application_page_regions to get the region source of a report :
    BEGIN
         -- get report region source
         SELECT region_source
              INTO l_source
              FROM apex_application_page_regions
          WHERE application_id = p_app_id
               AND page_id = p_app_page_id
               AND static_id = p_report;
    END;I can't compile the procedure. After some time I get ORA-04021: timeout occured while waiting to lock object.
    From v$session :
    STATUS     SERVER          PROGRAM          SQL_EXEC_START          BLOCKING_SESSION_STATUS     BLOCKING_INSTANCE     BLOCKING_SESSION     EVENT               P1TEXT          WAIT_CLASS     STATE
    ACTIVE     DEDICATED     plsqldev.exe     07/02/2012 09:12:52     VALID               1               971               library cache pin     handle address     Concurrency     WAITINGI am forced to ask developers to close all APEX instances to kill sessions, to be able to compile the procedure...
    Is there any way to bypass this ?
    Thank you.
    Yann.

    Yann39 wrote:
    Hi,
    Oracle 11.2.0.3.0, APEX 4.1.1.00.23.
    I am trying to compile a procedure that access apex_application_page_regions to get the region source of a report :
    BEGIN
         -- get report region source
         SELECT region_source
              INTO l_source
              FROM apex_application_page_regions
          WHERE application_id = p_app_id
               AND page_id = p_app_page_id
               AND static_id = p_report;
    END;I can't compile the procedure. After some time I get ORA-04021: timeout occured while waiting to lock object.
    From v$session :
    STATUS     SERVER          PROGRAM          SQL_EXEC_START          BLOCKING_SESSION_STATUS     BLOCKING_INSTANCE     BLOCKING_SESSION     EVENT               P1TEXT          WAIT_CLASS     STATE
    ACTIVE     DEDICATED     plsqldev.exe     07/02/2012 09:12:52     VALID               1               971               library cache pin     handle address     Concurrency     WAITINGI am forced to ask developers to close all APEX instances to kill sessions, to be able to compile the procedure...
    Is there any way to bypass this ?
    Thank you.
    Yann.I previously had a problem similar to this. (Un)fortunately, the issue appeared to solve itself...
    Library Cache Pin Wait Event (within the context of APEX)

  • Xorg frequently does high cpu load.

    Hi,
    I've recently installed arch on my (new!) Asus UL30A and I've got a problem with temporal high usage of cpu by X. I've noticed it yesterday after installing gimp and running it. Cpu load was 40-60%. Now I've got htop always open and when I just do stuff (conkeror+couple of terminals) in dwm it jumps to >30%. Is it normal? How can I deal with it?
    It's clean new arch install.
    Conky has 2sec update, double buffer on but it's outputted to console ( I dunno if it's needed to solve my problem )
    .xinitrc: http://pastebin.ca/1919877
    .xorg.conf: http://pastebin.ca/1919882
    .Xorg.0.log: http://pastebin.ca/1919883

    Why are logical reads responsible for high CPU load?First of all, I would like to recommend a good book on 'SQL Tuning' by Don Tow. Its really worthy to have.
    Coming to your qeustion, when a session needs to access blocks in the buffer cache, its needs to acquire a latch, and latch and it uses few CPU cycles to acquire it. Therefore, reading blocks from memory (buffer cache) in terms of CPU, are very costly.
    How to avoid logical reads?Avoid unnecessary block access, either removing indexes, reading only required blocks, also tunig the query according to its cardinality in the execution plan. (compare with v$sql_plan_statistics cardinality.)
    Download a paper from the following link
    http://www.hotsos.com/e-library/abstract.php?id=6
    Title:      Why a 99%+ Database Buffer Cache Hit Ratio is Not Ok
    Author:      Cary Millsap
    Jaffar

  • Syslogd makes high CPU Load and standby mode doesn´t work.

    After updating to Leopard I see high CPU Load caused by syslogd daemon(40%-80%) and my MacBook has problems with standby mode. After stopping the white LED lights and CPU fan speeds up. Is there any chance to fix these problems?

    OK.. here's where I'm at with troubleshooting this. As I said before, for ME it occurred simultaneous to a low or out of memory situation. I don't know if syslogd was using my the ram, or if the low ram was a symptom of an issue that syslogd was getting caught up in reporting... but the system log file had tens of THOUSANDS of out of memory errors listed. Almost all were from dashboard.
    So... I've done the following. In dashboard I closed ALL open widgets. I disabled spaces (since in another thread someone indicated it used a lot of memory). I ran Leopard Cache Cleaner and used it to perform maintenances, run the os scripts and rebuild caches and so on. Rebooted.
    Now its working fine! Since then its been over 24 hrs and I STILL have over 300megs of ram reported free on a 1 gig system. I've used everything else like normal (safari, mail, ichat, itunes, etc..). Where the problem used to happen after a couple of hours after a reboot every time, now it seems normal. No out of mem, and syslogd is running normally (apparently).
    I will run a few apps that I havent run in a while and see if those create an issue. If not, later today I will enable spaces and see how that does after a few hours. Finally I'll add in the dashboard widgets one at a time to see if the issue lies there. I'll report back here if I discover anything.

  • Sessions hangs with library cache lock

    Der all,
    11.1.0.7 rac on solaris 10
    Our workflow session yesterday hanged on a particular step the session was waiting on a library cache lock (by using query select event,p1,p2 from v$session where sid=<my_sid>;)
    when I checked the blocking session , using the note 122793.1 and http://oracle-study-notes.blogspot.com/2009/05/resolving-library-cache-lock-issue.html and http://oracle-study-notes.blogspot.com/2009/05/find-session-holding-library-cache-lock.html .
    I found that
    SQL> SELECT SID,USERNAME,TERMINAL,PROGRAM FROM V$SESSION
      2   WHERE SADDR in
      3    (SELECT KGLLKSES FROM X$KGLLK LOCK_A
      4     WHERE KGLLKREQ > 0
      5       AND EXISTS (SELECT LOCK_B.KGLLKHDL FROM X$KGLLK LOCK_B
                     WHERE KGLLKSES = '&SADDR_OF_BLKING_SESS'
      6    7                   AND LOCK_A.KGLLKHDL = LOCK_B.KGLLKHDL
      8                   AND KGLLKREQ = 0)
      9    );
    Enter value for saddr_of_blking_sess: 0000000770E494E0
    old   6:                  WHERE KGLLKSES = '&SADDR_OF_BLKING_SESS'
    new   6:                  WHERE KGLLKSES = '0000000770E494E0'
      SID USERNAME        TERMINAL   PROGRAM
      817 SYS             UNKNOWN    oracle@tabsdb07
                                      (J002)
      828 SYS             UNKNOWN    oracle@tabsdb07
                                      (J001)after killing the session, the library cache locks still remained.when I ran trace on the session
    select /*+ all_rows ordered */ A.rowid, :1, :2, :3
    from
    "DBMRPT"."DBM_BIAUTO_SUSP" A , "DBMRPT"."DBM_CDR_FILE_HEAD" B where(
      "A"."CDR_TYPE" is not null and "A"."FILE_ID" is not null) and(
      "B"."CDR_TYPE" (+)= "A"."CDR_TYPE" and "B"."FILE_ID" (+)= "A"."FILE_ID")
      and( "B"."CDR_TYPE" is null or "B"."FILE_ID" is null)
    call     count       cpu    elapsed       disk      query    current        rows
    Parse        1      0.01       0.01          0          0          0           0
    Execute      1      0.00       0.00          0          0          0           0
    Fetch        0      0.00       0.00          0          0          0           0
    total        2      0.01       0.01          0          0          0           0
    Misses in library cache during parse: 1
    Misses in library cache during execute: 1
    Optimizer mode: ALL_ROWS
    Parsing user id: SYS   (recursive depth: 3)
    Elapsed times include waiting on following events:
      Event waited on                             Times   Max. Wait  Total Waited
      ----------------------------------------   Waited  ----------  ------------
      row cache lock                                  5        0.00          0.00
      db file sequential read                   295932636        0.07       5066.63
      gc cr grant 2-way                          727813        0.02        233.95
      latch: gc element                              80        0.00          0.00
      latch: gcs resource hash                      870        0.00          0.00
      latch free                                      2        0.00          0.00
      gc remaster                                     9        2.00         12.91
      gcs drm freeze in enter server mode             9        0.54          2.08
      latch: object queue header operation           66        0.00          0.05
      latch: cache buffers chains                    15        0.03          0.20
      resmgr:internal state change                   63        0.10          5.30
      latch: cache buffers lru chain               1260        0.00          0.01
    ********************************************************************************Please guide
    Kai
    all this time sql_id for the session remanined in the sql :
    ALTER TABLE DBMRPT.DBM_BIAUTO_SUSP ENABLE CONSTRAINT DBS1_DCFH_FK ..

    hi..
    Go through [http://orainternals.wordpress.com/2009/06/02/library-cache-lock-and-library-cache-pin-waits/]
    Anand

  • X-Fi + 2 GFX-Cards = high CPU-Load, slow Mouse, hanging system

    >X-Fi + 2 GFX-Cards = high CPU-Load, slow Mouse, hanging systemA Hey guys,
    I'm running 2 GF 8800 GTs (PCIe .) cards on a MSI Eclipse SLI board. My Audigy2 ZS PCI runned fine in this system.
    I just replaced the Audigy by a PCIe X-Fi (EMU20K2 audio processor - not the xtreme audio from MSI).
    Now I'm dealing with the following issue:
    - System startup is slow
    - in Windows, Mouse is slow, stuttering
    - high CPU-Load
    - very slow system response
    !!! Attention !!! I had this problems allready at the st boot with the X-Fi, when the driver from creative wasn't installed (the card was recognized as "HD Audio" bei Windows 7). Installing the drivers didn't help.
    If I install only one graphics card, the system runns fine and I can use the X-Fi and it's Software without problems.
    If I replace the X-Fi by the PCIe Xtreme Audio from MSI, System runns fine.
    If I use Win XP with the two GFX cards and the X-Fi, System runns fine.
    Can you help me?
    Regards from snowy Germany
    User....

    Hi there,
    got the same problem if i use my two Nvidia GTX260.
    My system:
    Asus P6T
    I7 920 @ 3,8GHz
    2GB ram
    Gigabyte GTX260 OC Edition
    Nvidia GTX260
    X-Fi XtremeGamer
    -System (Win7x64) takes ~0min to start.
    -Stuttering mouse, keyboard everything >.<
    Deactivating the onboard sound doesnt help.
    Newest Nvidia and Creative driver too =(
    The system runs fine without the X-FI and two GTX260 no errors ect...
    One GTX260 runs also fine with the X-FI
    But two graphic cards and the X-FI..... **bleep** =/
    I use debian as my main OS and it run still fine with both graphic cards and the x-fi...
    so i think its just a driver problem.
    Hope it will be fixed soon =/
    If someone have any sugestions...please help us.
    Greetings from Germany also =D
    Syro

Maybe you are looking for

  • IMac stalled and now is stuck on grey screen

    So, I got on my iMac(2008 I believe; it's got the black border, pretty sure it's got a core2duo processor. Running mountain lion) and while the screen was on, nothing was working. The desktop was completely frozen, the mouse wasn't moving, and the ke

  • Problem with complex business logic...

    hi all, i have two tables 1.running_table 2.history_table in my tables, for recent 30 day's data will be stored in "running_table". if 30 days completed from the entered date, all the data will be moved to "history_table".this will be done by some tr

  • Changing boilerplate at runtime in reports 10g

    Hi, Is there any way to change the column heading at runtime? Can any body help me? Thanks

  • Performnace Issue

    Hi All, Wer are facing very serious performance issues with one of our apps server.......at the time when system was behaving slow ....I am sharing the various parameter values -: app server is on windows platform CPU User %: 9 system%: 1 idle%: 89 s

  • How was the pre-XI world at SAP??

    Hi I am wondering which integrtion technologies were present in the SAP world before the emergence of SAP XI? I heared about technologies like, ALE and BC (Business Connector).. Could you name those technologies and describe their disadvantages short