33k swf 50% cpu usage -no code- local tests cs3 - FP10 - AVM1

The title pretty much says it all.
Someone please explain this kind of poor rendering performance. Its a relatively simple vector animation, there are some masks, but the content is in no way outrageous.
900 x 650 stage
95% vector graphics
1 small mask
2 motion tweens
6 10 keyframe animations that repeat (same mc multiple times)
The rest is keyframes.
My team has created swf files that were MEGS larger than this and havn't ever had issues like this until my companies' IT department pushed down FP 10.
This project is due out CoB friday and we have 16 animations like this all with similar performance issues. (and potentially four years of training that will need to be updated ASAP).
Someone please give me some suggestions.
Any help is appreciated,
Thank you,
M.

I appreciate you taking the time to view my post.
I have submitted a bug report as you suggested, although i am not exactly sure how this kind of performance can really be considered a "bug".
I would happily put in a case for this issue, if i had my keys readily availible, I don't. I contacted my IT department, and they are supposed to give me a response to weather or not they will release that information to me within the hour. If they provide me with the information I will happily submit a case.
I posted on this forum, because the FP update is the only change that has happened to our development boxes and it seemed appropriate. What i was hoping for however, was some input from someone else who has had a similar issue, and possibly found a hack or something that worked to help solve or reduce the impact of our immediate issue. As i mentioned before, I have to release an alpha of this material by CoB today that i can push to no later than 6 AM mst monday morning.
After that, I will be able to take a serious look at what will need to happen, and your suggestions seem much more reasonable after my deadline. As this 33k file will probably be 1.5-2 megs once we implement the timeline audio track in our beta release and the fact that we potentially have 4 years of training content that may need to completely rebuilt just to run, the potential impact of this kind of issue could cripple my department.
For the time being at least, I need something that can keep production moving. That is more of what I was hoping for in terms of response.
In the long term, I agree that some "real" solution needs to be found, and your suggestions are probably the best way to find a permananent solution. 

Similar Messages

  • Loaded external swf vs CPU usage

    Halo.   I use the following code in order to load external "inde_2.swf" into "index.swf":    (for Flash Player 9.0)
    stop();
    var myMovie:Sprite;
    var l:Loader = new Loader();
    l.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, loop, false, 0, true);
    l.contentLoaderInfo.addEventListener(Event.COMPLETE, done, false, 0, true);
    l.load(new URLRequest("index.swf"));
    function loop(e:ProgressEvent):void
      var perc:Number = e.bytesLoaded / e.bytesTotal;
      loader.percent.text = Math.ceil(perc*100).toString();
    function done(e:Event):void
      removeChildAt(0) // was removeChildAt(0) but it make more sense this way
      loader.percent = null;
      myMovie = Sprite(l.content);
      addChild(myMovie);
      var container:MovieClip = MovieClip(l.content);
       addChild(container);
       container.gotoAndStop(890);
      l.contentLoaderInfo.removeEventListener( ProgressEvent.PROGRESS, loop);
      l.contentLoaderInfo.removeEventListener(Event.COMPLETE, done);
      l = null;
    But unfortunately if "index.swf" is a complex file (with many objects etc.) , the loaded "index_2.swf" will play very slow (high CPU usage).
    Is there any trick to unload "index.swf" so that "index_2" can play properly?

    if index_2.swf is a resource hog, there's nothing you can do in index.swf to fix that.  on the other hand, you should clean up your index.swf code:
    var l:Loader = new Loader();
    l.contentLoaderInfo.addEventListener(ProgressEvent.PROGRESS, loop, false, 0, true);
    l.contentLoaderInfo.addEventListener(Event.COMPLETE, done, false, 0, true);
    l.load(new URLRequest("index.swf"));
    function loop(e:ProgressEvent):void
      var perc:Number = e.bytesLoaded / e.bytesTotal;
      loader.percent.text = Math.ceil(perc*100).toString();
    function done(e:Event):void
      removeChildAt(0) // <-not sure this makes sense.  what are you removing?
      loader.percent = null;
      var container:MovieClip = MovieClip(l.content);
       addChild(container);
       container.gotoAndStop(890);
      l.contentLoaderInfo.removeEventListener( ProgressEvent.PROGRESS, loop);
      l.contentLoaderInfo.removeEventListener(Event.COMPLETE, done);
      l = null;

  • NI DAQmx 8.3 and CPU usage

    I have similar problem as described on page http://forums.ni.com/ni/board/message?board.id=250&message.id=23831
    but have solution and some reflections.
    first of all, about system
    system use 2x PCI-6143 and take data from 16 channels with maximum rate (250 kS/s)
    program
    was created about year ago (with LV 7.1.1, DAQmx 7.4) and on PC with
    PIV (3.2 GHz) processor and 1 Gb of RAM work properly (CPU usage less
    30%).
    Now I've recompile program with LV8.2 and update drivers to DAQmx 8.3. now program can't work properly because CPU usage 100%
    I create test VI for research this problem.
    First version (daq_test1) - simple code - configure daqtask and get data.
    I found:
    if
    sample rate less or equal 90 kS/s (on PCI-6143) CPU usage less 5%, but
    when rate more 95 kS/s CPU usage jump to 60% (for one or more channels
    on one or two devises).
    Then I create simulated devise PCI-6143 in MAX and the same vi (daq_test1) require not more than 5-10% of CPU.
    also
    I have examine devise 16E-4 and find the same problem: if samle rate
    more than "boundary" rate, CPU usage is too much (50-70%).
    Then I add configure parameters (daq_test2) - add manualy DMA "on". There are no effects (CPU usage jump to 60% on "fast" rates)
    Then I  "play" with WaitMode (daq_test3). There are no effects (even if WaitMode=Sleep and SleepTime>1s CPU usage about 60%)
    Finally
    I create vi (daq_test4), where "manually" check
    AvailableSamplesPerChannel and call DAQmx Read only when bufer has more
    samples, that I need.
    So I'd wound solution, but think driver
    MUST check available samples carefully (also, why DAQmx 7.4 can fast
    scan, but  DAQmx 8.3 can't do it at least the same way as previous version).
    Attachments:
    daq_test.zip ‏78 KB

    Artem,
    Thank you for contacting National Instruments support.  This is expected behavior. When the wait mode is set to Sleep, DAQmx will only sleep if and only if there is no data available to process. So, for example,  at 200 kS/s, data is filling up the buffer fairly quickly and should always be available to read, which means that the process will not sleep at all. When data is always available, the CPU is going to handle it as quickly as possible and thus the CPU will appear to be running at near 100%.
    Specifying a wait mode of Sleep is really only beneficial when the acquisition is running slowly enough that a lot of time is spent in DAQmx Read waiting for the data to arrive. In the past, the CPu was maxed out even at extremely slow sampling rates.  Sleep mode alleviates this problem by putting the process to sleep when no data is ready for processing; however, if data is available, it will be handled immediately and no sleeping will occur. If data is constantly available for processing, the CPU is expected to deal with it right away and the usage will appear to be high.
    Regards,
    Kenn North
    Senior Product Manager - Search, Product Data
    http://ni.com/search

  • Is there any Vi for getting the CPU and Memory usage of the Local as well as Remote System

    Is there any Vi for getting the CPU and Memory usage of the Local as well as Remote System

    Find the attachment(LV8.5) for local machines. 
    You can use shared variables to monitor the remote machine's usage.
    Attachments:
    Task Monitor 85.vi ‏25 KB

  • Large-scale swf causes 100% CPU usage

    Hi,
    I've created an interactive map that loads data from XML. The
    map is made from several areas (MCs, currently 16) - all positioned
    in a "mega MC" that holds the map together. The JPG are loaded
    externally respectively to the area MC that it belongs to.
    The problem is that the Map MC (that contains all the area
    MCs) is too big (around 6000X6000 Pxs) and therefore slows down the
    computer significantly (The CPU reaches 100% usage). This happens
    also when there's no loading of the external JPGs - meaning, I
    think, that the problem is only with the "physical" size of the MC
    and not its actual MB size.
    I hope I was clear enough.. Would appreciate any help!
    Link to map

    Hi,
    I had a similar problem when I needed a really big area. I
    think the cpu usage wasn't that bad in Flash Player 7 and 8.5 (now
    9), but in Flash 8 it was really high. I decided to not move the
    big MC around, only the smaller parts that where needed. I guess
    the whole map is never shown completely, only parts of it, so you
    can write a scroll function that determines the active MCs and only
    moves those around instead of the big holder MC. To achieve this, I
    added a variable to each MC that holds the position of that part in
    the big MC. Then I kept track of the position of the display in the
    map, and used this to decide which parts are actually displayed.
    Only these MCs have to be moved when scrolling, reducing the cpu
    usage a lot. When a part moves out of the display, I set its real
    position to -5000, and when a new part comes into display, its
    position is set from -5000 to the proper _x value so it gets
    displayed.
    hth,
    blemmo

  • Timed loop and CPU usage

    Platform is WIN_XP Pro and machine is a P4 at 2.5Ghz with 512 Mb ram.
    LV7.1 + PCI 6229
    I am using  50ms Timed loop for running a state machine inside it
    and also a  whole lot of other things like reading / writing
    DAQMx  functions;  file I/O functions and such. As the
    project involves a  main and sub-panlel set up local variables
    could not be elimnated fully and there should be something like 150 of
    them. But not all are accessed always - maybe about 15 of them at any
    given time depending on the SM staus.
    Problem :
    Once started the "Finished late"  indication  is off and
    the  actual timing  alternates between 49 to 52 ms. The CPU
    usage is around 25%.
    But as time goes by,  the system gets unstable : After 15 minutes
    or so, the Finished Late indication is always ON and the CPU usage is
    gradually tending towards or exceeds 100%. 
    Obviously the machine control timing now gets affected and things slow
    down badly. Closing the application ands restarting repeats the above
    cycle.
    I am at a loss  to understand what is happening ?  WIll
    breaking down the single Timed Loop to multiple ones help  ? WIll
    that be an efficient way of parallel threading ?
    I can post the code but its quite large and will do it as a last resort.
    thanks
    Raghunathan
    Raghunathan
    LV2012 to Automate Hydraulic Test rigs.

    Hello,
    It sounds like an interesting problem.  It would be worth some experimentation to figure out what's going wrong - attempting to decouple major "pieces" of the code would be helpful.  For example, you could try breaking your code into multiple loops if that makes sense in your architecture, but perhaps you could even eliminate all but one of the loops to begin with, and see if you can correlate the problem to the code in just one of your loops.
    Another concern is that you mention using many local variables.  Variable read operations cause new buffer allocations, so if you're passing arrays around that way, you could be hitting a problem of forcing your machine to perform many allocations and deallocations of memory.  As arrays grow, this can be a bigger and bigger problem.  You can use other techniques for passing data around your block diagram, such as dataflow if possible (just simple wires), or queues where dataflow can't dicatate program flow completely.
    Hopefully looking into your code with the above considerations will lead you in the right direction.  In your case, removing code so that you can identify which elements are causing the problem should help significantly.
    Best Regards,
    JLS
    Best,
    JLS
    Sixclear

  • Unable to detect updates, 100% CPU usage by wuauserv

    Lawrence,
    Below is the log you requested.  This was taken after renaming the SoftwareDistribution directory.  The user reported CPU usage went back up to 100% at around 14:00 after which we killed the service.  This is too long for one post, so I'm breaking it in two.
    2010-04-14 06:02:55:323 1044 a68 Misc ===========  Logging initialized (build: 7.4.7600.226, tz: -0700)  ===========
    2010-04-14 06:02:55:323 1044 a68 Misc   = Process: C:\WINDOWS\System32\svchost.exe
    2010-04-14 06:02:55:323 1044 a68 Misc   = Module: C:\WINDOWS\system32\wuaueng.dll
    2010-04-14 06:02:55:323 1044 a68 Service *************
    2010-04-14 06:02:55:323 1044 a68 Service ** START **  Service: Service startup
    2010-04-14 06:02:55:323 1044 a68 Service *********
    2010-04-14 06:02:55:604 1044 a68 Agent   * WU client version 7.4.7600.226
    2010-04-14 06:02:55:604 1044 a68 Agent   * Base directory: C:\WINDOWS\SoftwareDistribution
    2010-04-14 06:02:55:620 1044 a68 Agent   * Access type: No proxy
    2010-04-14 06:02:55:620 1044 a68 Agent   * Network state: Connected
    2010-04-14 06:02:58:995 1376 cc8 Misc ===========  Logging initialized (build: 7.4.7600.226, tz: -0700)  ===========
    2010-04-14 06:02:58:995 1376 cc8 Misc   = Process: C:\WINDOWS\system32\wuauclt.exe
    2010-04-14 06:02:58:995 1376 cc8 Misc   = Module: C:\WINDOWS\system32\wuaueng.dll
    2010-04-14 06:02:58:995 1376 cc8 DtaStor Default service for AU is {00000000-0000-0000-0000-000000000000}
    2010-04-14 06:02:59:010 1376 cc8 DtaStor Default service for AU is {9482F4B4-E343-43B6-B170-9A65BC822C77}
    2010-04-14 06:02:59:010 1044 a68 Agent WARNING: Failed to read the service id for re-registration 0x80070002
    2010-04-14 06:02:59:010 1044 a68 Agent WARNING: Missing service entry in the backup data store; cleaning up
    2010-04-14 06:03:13:104 1044 e68 Agent ***********  Agent: Initializing Windows Update Agent  ***********
    2010-04-14 06:03:13:104 1044 e68 Agent ***********  Agent: Initializing global settings cache  ***********
    2010-04-14 06:03:13:104 1044 e68 Agent   * WSUS server:http://wsus01
    2010-04-14 06:03:13:104 1044 e68 Agent   * WSUS status server:http://wsus01
    2010-04-14 06:03:13:104 1044 e68 Agent   * Target group: (Unassigned Computers)
    2010-04-14 06:03:13:104 1044 e68 Agent   * Windows Update access disabled: No
    2010-04-14 06:03:13:135 1044 e68 DnldMgr Download manager restoring 0 downloads
    2010-04-14 06:03:13:214 1044 e68 AU ###########  AU: Initializing Automatic Updates  ###########
    2010-04-14 06:03:13:214 1044 e68 AU AU setting next detection timeout to 2010-04-14 13:03:13
    2010-04-14 06:03:13:214 1044 e68 AU AU setting next sqm report timeout to 2010-04-14 13:03:13
    2010-04-14 06:03:13:214 1044 e68 AU   # WSUS server:http://wsus01
    2010-04-14 06:03:13:214 1044 e68 AU   # Detection frequency: 22
    2010-04-14 06:03:13:214 1044 e68 AU   # Approval type: Scheduled (Policy)
    2010-04-14 06:03:13:214 1044 e68 AU   # Scheduled install day/time: Every day at 3:00
    2010-04-14 06:03:13:229 1044 e68 AU   # Auto-install minor updates: Yes (Policy)
    2010-04-14 06:03:13:229 1044 e68 AU   # Will interact with non-admins (Non-admins are elevated (Policy))
    2010-04-14 06:03:13:245 1044 e68 AU Initializing featured updates
    2010-04-14 06:03:13:245 1044 e68 AU Found 0 cached featured updates
    2010-04-14 06:03:13:260 1044 e68 AU AU finished delayed initialization
    2010-04-14 06:03:13:260 1044 e68 AU Triggering AU detection through DetectNow API
    2010-04-14 06:03:13:260 1044 e68 AU Triggering Online detection (non-interactive)
    2010-04-14 06:03:14:495 1044 a68 Report ***********  Report: Initializing static reporting data  ***********
    2010-04-14 06:03:14:495 1044 a68 Report   * OS Version = 5.1.2600.3.0.65792
    2010-04-14 06:03:14:542 1044 a68 Report   * Computer Brand = Dell Computer Corporation
    2010-04-14 06:03:14:542 1044 a68 Report   * Computer Model = Dimension 2400              
    2010-04-14 06:03:14:542 1044 a68 Report   * Bios Revision = A05
    2010-04-14 06:03:14:542 1044 a68 Report   * Bios Name = Phoenix ROM BIOS PLUS Version 1.10 A05
    2010-04-14 06:03:14:542 1044 a68 Report   * Bios Release Date = 2003-12-02T00:00:00
    2010-04-14 06:03:14:542 1044 a68 Report   * Locale ID = 1033
    2010-04-14 06:03:14:760 1044 a68 AU #############
    2010-04-14 06:03:14:760 1044 a68 AU ## START ##  AU: Search for updates
    2010-04-14 06:03:14:760 1044 a68 AU #########
    2010-04-14 06:03:14:760 1044 a68 AU <<## SUBMITTED ## AU: Search for updates [CallId = {7DEBF958-EE84-4C30-8F31-A9147A47B233}]
    2010-04-14 06:03:14:792 1044 ad4 Agent *************
    2010-04-14 06:03:14:792 1044 ad4 Agent ** START **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2010-04-14 06:03:14:792 1044 ad4 Agent *********
    2010-04-14 06:03:14:792 1044 ad4 Agent   * Online = Yes; Ignore download priority = No
    2010-04-14 06:03:14:792 1044 ad4 Agent   * Criteria = "IsHidden=0 and IsInstalled=0 and DeploymentAction='Installation' and IsAssigned=1 or IsHidden=0 and IsPresent=1 and DeploymentAction='Uninstallation' and IsAssigned=1 or IsHidden=0 and IsInstalled=1 and DeploymentAction='Installation' and IsAssigned=1 and RebootRequired=1 or IsHidden=0 and IsInstalled=0 and DeploymentAction='Uninstallation' and IsAssigned=1 and RebootRequired=1"
    2010-04-14 06:03:14:792 1044 ad4 Agent   * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2010-04-14 06:03:14:792 1044 ad4 Agent   * Search Scope = {Machine}
    2010-04-14 06:03:14:979 1044 ad4 Misc Validating signature for C:\WINDOWS\SoftwareDistribution\SelfUpdate\Default\wuident.cab:
    2010-04-14 06:03:15:073 1044 ad4 Misc  Microsoft signed: Yes
    2010-04-14 06:03:15:229 1044 ad4 Misc Validating signature for C:\WINDOWS\SoftwareDistribution\SelfUpdate\Default\wsus3setup.cab:
    2010-04-14 06:03:15:245 1044 ad4 Misc  Microsoft signed: Yes
    2010-04-14 06:03:15:245 1044 ad4 Setup ***********  Setup: Checking whether self-update is required  ***********
    2010-04-14 06:03:15:245 1044 ad4 Setup   * Inf file: C:\WINDOWS\SoftwareDistribution\SelfUpdate\Default\wsus3setup.inf
    2010-04-14 06:03:15:323 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\cdm.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:339 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wuapi.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:354 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wuapi.dll.mui: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:354 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wuauclt.exe: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:354 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wuaucpl.cpl: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:370 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wuaucpl.cpl.mui: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:370 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wuaueng.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:385 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wuaueng.dll.mui: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:385 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wucltui.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:401 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wucltui.dll.mui: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:401 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wups.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:401 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wups2.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:432 1044 ad4 Setup Update NOT required for C:\WINDOWS\system32\wuweb.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 06:03:15:432 1044 ad4 Setup   * IsUpdateRequired = No
    2010-04-14 06:03:15:589 1044 ad4 PT +++++++++++  PT: Synchronizing server updates  +++++++++++
    2010-04-14 06:03:15:589 1044 ad4 PT   + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL =http://wsus01/ClientWebService/client.asmx
    2010-04-14 06:03:15:760 1044 ad4 PT WARNING: Cached cookie has expired or new PID is available
    2010-04-14 06:03:15:760 1044 ad4 PT Initializing simple targeting cookie, clientId = 8fba4725-278a-4588-b0cb-713b711911d5, target group = , DNS name = client100.domain.com
    2010-04-14 06:03:15:760 1044 ad4 PT   Server URL = http://wsus01/SimpleAuthWebService/SimpleAuth.asmx
    2010-04-14 06:05:15:465 1044 ad4 Agent WARNING: Failed to evaluate Installed rule, updateId = {BFE5B177-A086-47A0-B102-097E4FA1F807}.102, hr = 8024E001
    2010-04-14 06:08:54:374 2164 b4c Misc ===========  Logging initialized (build: 7.4.7600.226, tz: -0700)  ===========
    2010-04-14 06:08:54:374 2164 b4c Misc   = Process: C:\WINDOWS\system32\wuauclt.exe
    2010-04-14 06:08:54:374 2164 b4c AUClnt wuauclt.exe launched with command line wuauclt /reportnow
    2010-04-14 06:08:54:374 2164 b4c Service Registering proxy/stubs.
    2010-04-14 06:08:54:405 2164 b4c AUClnt wuauclt.exe is exiting with code 0x00000000
    2010-04-14 06:10:10:531 1044 ad4 Misc WARNING: Send failed with hr = 80072ee2.
    2010-04-14 06:10:10:531 1044 ad4 Misc WARNING: SendRequest failed with hr = 80072ee2. Proxy List used: <(null)> Bypass List used : <(null)> Auth Schemes used : <>
    2010-04-14 06:10:10:531 1044 ad4 PT   + Last proxy send request failed with hr = 0x80072EE2, HTTP status code = 0
    2010-04-14 06:10:10:531 1044 ad4 PT   + Caller provided credentials = No
    2010-04-14 06:10:10:531 1044 ad4 PT   + Impersonate flags = 0
    2010-04-14 06:10:10:531 1044 ad4 PT   + Possible authorization schemes used =
    2010-04-14 06:10:10:531 1044 ad4 PT WARNING: SyncUpdates failure, error = 0x80072EE2, soap client error = 5, soap error code = 0, HTTP status code = 200
    2010-04-14 06:10:10:531 1044 ad4 PT WARNING: PTError: 0x80072ee2
    2010-04-14 06:10:10:531 1044 ad4 PT WARNING: SyncUpdates_WithRecovery failed.: 0x80072ee2
    2010-04-14 06:10:10:531 1044 ad4 PT WARNING: Sync of Updates: 0x80072ee2
    2010-04-14 06:10:10:531 1044 ad4 PT WARNING: SyncServerUpdatesInternal failed: 0x80072ee2
    2010-04-14 06:10:10:531 1044 ad4 Agent   * WARNING: Failed to synchronize, error = 0x80072EE2
    2010-04-14 06:10:10:547 1044 ad4 Agent   * WARNING: Exit code = 0x80072EE2
    2010-04-14 06:10:10:547 1044 ad4 Agent *********
    2010-04-14 06:10:10:547 1044 ad4 Agent **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2010-04-14 06:10:10:547 1044 ad4 Agent *************
    2010-04-14 06:10:10:547 1044 ad4 Agent WARNING: WU client failed Searching for update with error 0x80072ee2
    2010-04-14 06:10:10:563 1044 ad4 Report REPORT EVENT: {074D4BD9-B5D0-4706-B299-6F52972B8A5E} 2010-04-14 06:10:10:547-0700 1 148 101 {00000000-0000-0000-0000-000000000000} 0 80072ee2 AutomaticUpdates Failure Software Synchronization Windows Update Client failed to detect with error 0x80072ee2.
    2010-04-14 06:10:10:578 1044 b70 AU >>##  RESUMED  ## AU: Search for updates [CallId = {7DEBF958-EE84-4C30-8F31-A9147A47B233}]
    2010-04-14 06:10:10:578 1044 b70 AU   # WARNING: Search callback failed, result = 0x80072EE2
    2010-04-14 06:10:10:578 1044 b70 AU   # WARNING: Failed to find updates with error code 80072EE2
    2010-04-14 06:10:10:578 1044 b70 AU #########
    2010-04-14 06:10:10:578 1044 b70 AU ##  END  ##  AU: Search for updates [CallId = {7DEBF958-EE84-4C30-8F31-A9147A47B233}]
    2010-04-14 06:10:10:578 1044 b70 AU #############
    2010-04-14 06:10:10:578 1044 b70 AU AU setting next detection timeout to 2010-04-14 18:10:10
    2010-04-14 06:10:10:578 1044 b70 AU AU was unable to detect updates for more than 48 hours
    2010-04-14 06:10:10:781 1044 ad4 Report Uploading 1 events using cached cookie, reporting URL =http://wsus01/ReportingWebService/ReportingWebService.asmx
    2010-04-14 06:10:10:813 1044 ad4 Report Reporter successfully uploaded 1 events.
    2010-04-14 06:10:15:578 1044 ad4 Report REPORT EVENT: {EEA6E357-20F8-4952-969E-A84B380FD0A6} 2010-04-14 06:10:10:578-0700 1 149 102 {00000000-0000-0000-0000-000000000000} 0 0 AutomaticUpdates Failure Software Synchronization Unable to Connect: Windows is unable to connect to the automatic updates service and therefore cannot download and install updates according to the set schedule. Windows will continue to try to establish a connection.
    2010-04-14 06:10:17:657 1044 e68 AU AU found 0 updates for install at shutdown
    2010-04-14 06:10:17:657 3700 9e8 Misc ===========  Logging initialized (build: 7.4.7600.226, tz: -0700)  ===========
    2010-04-14 06:10:17:657 3700 9e8 Misc   = Process: C:\WINDOWS\Explorer.EXE
    2010-04-14 06:10:17:657 3700 9e8 Misc   = Module: C:\WINDOWS\system32\wuaueng.dll
    2010-04-14 06:10:17:657 3700 9e8 Shutdwn 0 updates are ready to be installed at shutdown.
    2010-04-14 06:10:17:657 3700 9e8 Shutdwn Install at shutdown: no updates to install
    2010-04-14 06:10:39:407 1044 a68 AU ###########  AU: Uninitializing Automatic Updates  ###########
    2010-04-14 06:10:40:063 1044 a68 Service *********
    2010-04-14 06:10:40:454 1044 a68 Service **  END  **  Service: Service exit [Exit code = 0x240001]
    2010-04-14 06:10:40:454 1044 a68 Service *************
    2010-04-14 06:11:50:484 1044 1f0 Misc ===========  Logging initialized (build: 7.4.7600.226, tz: -0700)  ===========
    2010-04-14 06:11:50:671 1044 1f0 Misc   = Process: C:\WINDOWS\System32\svchost.exe
    2010-04-14 06:11:50:671 1044 1f0 Misc   = Module: C:\WINDOWS\system32\wuaueng.dll
    2010-04-14 06:11:50:484 1044 1f0 Service *************
    2010-04-14 06:11:50:687 1044 1f0 Service ** START **  Service: Service startup
    2010-04-14 06:11:50:687 1044 1f0 Service *********
    2010-04-14 06:11:50:687 1044 1f0 Service updated service status to 2
    2010-04-14 06:11:50:718 1044 1f0 Setup Processing any required registration
    2010-04-14 06:11:50:781 1044 1f0 Service Registering proxy/stubs.
    2010-04-14 06:11:50:843 1044 1f0 Agent   * WU client version 7.4.7600.226
    2010-04-14 06:11:50:843 1044 1f0 Agent   * Base directory: C:\WINDOWS\SoftwareDistribution
    2010-04-14 06:11:50:843 1044 1f0 Misc CSusProxyManager successfully initialized.
    2010-04-14 06:11:50:843 1044 1f0 Misc Default Winhttp settings are Proxy : <(null)> ProxyByPass : <(null)>
    2010-04-14 06:11:50:843 1044 1f0 Agent   * Access type: No proxy
    2010-04-14 06:11:50:843 1044 1f0 Service WARNING: WSASocket() for Ipv6 failed with error: 8007273f
    2010-04-14 06:11:50:859 1044 1f0 Service CIpAddressMonitor::CreateListenSocket returning with hr = 8007273f
    2010-04-14 06:11:50:859 1044 1f0 Service failed to initialize Ip V6 network monitor with error 8007273f
    2010-04-14 06:11:50:859 1044 1f0 Service CIpAddressMonitor::CreateListenSocket returning with hr = 0
    2010-04-14 06:11:50:859 1044 1f0 Service WARNING: WSASocket() for Ipv6 failed with error: 8007273f
    2010-04-14 06:11:50:875 1044 1f0 Service CIpAddressMonitor::CreateListenSocket returning with hr = 8007273f
    2010-04-14 06:11:50:875 1044 1f0 Service failed to get network state for Ipv6 with error 8007273f, because CIpAddressMonitor is not initialized
    2010-04-14 06:11:50:875 1044 1f0 Service Network interfaces : 1
    2010-04-14 06:11:50:875 1044 1f0 Agent   * Network state: Connected
    2010-04-14 06:11:50:890 1044 1f0 EEHndlr EE does not support subexpression parsing.
    2010-04-14 06:11:50:890 1044 1f0 EEHndlr EE Handler QI: ISusExprEvaluate3
    2010-04-14 06:11:50:890 1044 1f0 EEHndlr CEEMsiHandler::AddRef: refcount is 2
    2010-04-14 06:11:50:890 1044 1f0 EEHndlr EE Handler QI: unsupported interface
    2010-04-14 06:11:50:890 1044 1f0 EEHndlr EE does not support subexpression parsing.
    2010-04-14 06:11:50:890 1044 1f0 EEHndlr EE does not support subexpression parsing.
    2010-04-14 06:11:50:937 1044 1f0 DnldMgr Initializing BITS callback handler.
    2010-04-14 06:11:50:968 1044 1f0 DnldMgr AddRef: ref count -> 1
    2010-04-14 06:11:50:968 1044 1f0 DnldMgr DH Listener AddRef: ref count -> 1
    2010-04-14 06:11:50:968 1044 1f0 DtaStor FATAL: DS: 0x80040154: Failed to CoCreate datastore
    2010-04-14 06:11:51:062  600 260 Misc ===========  Logging initialized (build: 7.4.7600.226, tz: -0700)  ===========
    2010-04-14 06:11:51:062  600 260 Misc   = Process: C:\WINDOWS\system32\wuauclt.exe
    2010-04-14 06:11:51:062  600 260 AUClnt wuauclt.exe launched with command line "C:\WINDOWS\system32\wuauclt.exe" /RunStoreAsComServer Local\[414]SUSDS7d0022572d2d924fa8b53b9aee537d0e
    2010-04-14 06:11:51:218  600 260 Misc ===========  Logging initialized (build: 7.4.7600.226, tz: -0700)  ===========
    2010-04-14 06:11:51:218  600 260 Misc   = Process: C:\WINDOWS\system32\wuauclt.exe
    2010-04-14 06:11:51:218  600 260 Misc   = Module: C:\WINDOWS\system32\wuaueng.dll
    2010-04-14 06:11:51:218  600 260 Service Registering proxy/stubs.
    2010-04-14 06:11:51:218  600 260 DtaStor Trying to make out of proc datastore active
    2010-04-14 06:11:51:937  600 260 DtaStor Created new ESE session
    2010-04-14 06:11:51:937  600 260 DtaStor CSusEseSession reference count at 1
    2010-04-14 06:11:51:937  600 260 DtaStor CSusDatastore AddRef: refcount is 1
    2010-04-14 06:11:52:078  600 260 DtaStor Attempting to open table tbStoreVersion
    2010-04-14 06:11:52:078  600 260 DtaStor Opened table: tableid: 39911424
    2010-04-14 06:11:52:078  600 260 DtaStor Transaction begun. sesid 025A0320. Nesting: 0
    2010-04-14 06:11:52:078  600 260 DtaStor CSusEseSession reference count at 2
    2010-04-14 06:11:52:078  600 260 DtaStor Transaction commited. sesid: 025A0320. Nesting: 0
    2010-04-14 06:11:52:078  600 260 DtaStor CSusEseSession reference count at 1
    2010-04-14 06:11:52:078  600 260 DtaStor Store version is 0.185
    2010-04-14 06:11:52:484  600 260 DtaStor Attempting to open table tbServiceData
    2010-04-14 06:11:52:500  600 260 DtaStor Opened table: tableid: 39911424
    2010-04-14 06:11:52:500  600 260 DtaStor Transaction begun. sesid 025A0320. Nesting: 0
    2010-04-14 06:11:52:500  600 260 DtaStor CSusEseSession reference count at 2
    2010-04-14 06:11:52:546  600 260 DtaStor Transaction commited. sesid: 025A0320. Nesting: 0
    2010-04-14 06:11:52:546  600 260 DtaStor CSusEseSession reference count at 1
    2010-04-14 06:11:52:546  600 260 DtaStor CSusEseSession reference count at 0
    2010-04-14 06:11:52:546  600 260 DtaStor CSusDatastore Release: refcount is 0
    2010-04-14 06:11:52:546  600 260 DtaStor SUS client data store initialized
    2010-04-14 06:11:52:562  600 260 DtaStor Out of proc datastore is now active
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastoreWrap QI: IClassFactory
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore QI: IUnknown requested
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore AddRef: refcount is 1
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore AddRef: refcount is 2
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore QI: Unknown interface requested
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore QI: Unknown interface requested
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore QI: IUnknown requested
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore AddRef: refcount is 3
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore AddRef: refcount is 4
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore QI: Unknown interface requested
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore QI: Unknown interface requested
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore QI: Unknown interface requested
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore Release: refcount is 3
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore QI: ISusDatastore requested
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore AddRef: refcount is 4
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore QI: ISusDatastore requested
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore AddRef: refcount is 5
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore Release: refcount is 4
    2010-04-14 06:11:52:562  600 260 DtaStor CSusDatastore Release: refcount is 3
    2010-04-14 06:11:52:578 1044 1f0 DtaStor Attempt 0 to CoCreate the datastore succeeded
    2010-04-14 06:11:52:578 1044 1f0 DtaStor Session caching is enabled
    2010-04-14 06:11:52:578 1044 1f0 DtaStor Store locked. Internal lock count is 1
    2010-04-14 06:11:52:578  600 260 DtaStor CSusDatastore QI: Unknown interface requested
    2010-04-14 06:11:52:578  600 260 DtaStor Retrieved existing ESE session
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession reference count at 1
    2010-04-14 06:11:52:578  600 260 DtaStor CSusDatastore AddRef: refcount is 4
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession QI: ISusEseSession
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession reference count at 2
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession reference count at 1
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession QI: Unknown interface requested
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession QI: Unknown interface requested
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession QI: Unknown interface requested
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession QI: IUnknown
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession reference count at 2
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession reference count at 3
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession QI: Unknown interface requested
    2010-04-14 06:11:52:578  600 260 DtaStor CSusEseSession QI: Unknown interface requested
    2010-04-14 06:11:52:593  600 260 DtaStor CSusEseSession QI: Unknown interface requested
    2010-04-14 06:11:52:593  600 260 DtaStor CSusEseSession reference count at 2
    2010-04-14 06:11:52:593  600 260 DtaStor CSusEseSession QI: ISusEseSession
    2010-04-14 06:11:52:593  600 260 DtaStor CSusEseSession reference count at 3
    2010-04-14 06:11:52:593  600 260 DtaStor CSusEseSession QI: ISusEseSession
    2010-04-14 06:11:52:593  600 260 DtaStor CSusEseSession reference count at 4
    2010-04-14 06:11:52:593  600 260 DtaStor CSusEseSession reference count at 3
    2010-04-14 06:11:52:593 1044 1f0 DtaStor CSusEseSessionWrap ref count at 1
    2010-04-14 06:11:52:593  600 260 DtaStor CSusEseSession QI: Unknown interface requested
    2010-04-14 06:11:52:593  600 260 DtaStor Section 0 locked by session 000C0728 (thread: 608)
    2010-04-14 06:11:52:593  600 260 DtaStor Attempting to open table tbFeaturedUpdateNotificationsData
    2010-04-14 06:11:52:593  600 260 DtaStor Opened table: tableid: 39911424
    2010-04-14 06:11:52:593  600 260 DtaStor Attempting to open table tbFeaturedUpdateNotificationsLocData
    2010-04-14 06:11:52:593  600 260 DtaStor Opened table: tableid: 39911696
    2010-04-14 06:11:52:593  600 260 DtaStor Transaction begun. sesid 025A0320. Nesting: 0
    2010-04-14 06:11:52:593  600 260 DtaStor CSusEseSession reference count at 4
    2010-04-14 06:11:52:609  600 260 DtaStor Transaction commited. sesid: 025A0320. Nesting: 0
    2010-04-14 06:11:52:609  600 260 DtaStor CSusEseSession reference count at 3
    2010-04-14 06:11:52:609  600 260 DtaStor Section 0 unlocked by session 000C0728 (thread: 608)
    2010-04-14 06:11:52:640 1044 1f0 DtaStor CSusEseSessionWrap ref count at 0
    2010-04-14 06:11:52:640 1044 1f0 DtaStor Wrapper store lock count at 0
    2010-04-14 06:11:52:640 1044 1f0 DtaStor Created timer queue timer with delay 300 sec
    2010-04-14 06:11:52:640 1044 1f0 Handler CUHHandlerBase::AddRef: refcount is 2
    2010-04-14 06:11:52:687 1044 1f0 Handler CUHHandlerBase::Release: refcount is 1
    2010-04-14 06:11:52:687 1044 1f0 Handler CUHHandlerBase::AddRef: refcount is 2
    2010-04-14 06:11:52:687 1044 1f0 Handler CUHHandlerBase::Release: refcount is 1
    2010-04-14 06:11:52:687 1044 1f0 Agent ref count on CCR after AddRef is 2
    2010-04-14 06:11:52:765 1044 1f0 Service destination 0 subscribes for subscription 1 with internalrouting 0
    2010-04-14 06:11:52:765 1044 1f0 Service destination 0 subscribes for subscription 0 with internalrouting 0
    2010-04-14 06:11:52:765 1044 1f0 Service destination 0 subscribes for subscription 14 with internalrouting 0
    2010-04-14 06:11:52:765 1044 1f0 Service new event 12 of type 1 added to event system
    2010-04-14 06:11:52:765 1044 1f0 Agent ref count on CCR after AddRef is 3
    2010-04-14 06:11:52:781 1044 1f0 Agent ref count on CCR after AddRef is 4
    2010-04-14 06:11:52:781 1044 1f0 Agent ref count on CCR after Release is 3
    2010-04-14 06:11:52:781 1044 1f0 Agent ref count on CCR after AddRef is 4
    2010-04-14 06:11:52:781 1044 1f0 Agent ref count on CCR after Release is 3
    2010-04-14 06:11:52:781 1044 1f0 Agent ref count on CCR after AddRef is 4
    2010-04-14 06:11:52:781 1044 1f0 AU AddRef: refcount is 2
    2010-04-14 06:11:52:781 1044 1f0 Service destination 1 subscribes for subscription 18 with internalrouting 5
    2010-04-14 06:11:52:781 1044 1f0 Setup Using INF-based selfupdate
    2010-04-14 06:11:52:843 1044 1f0 Service updated service status to 4
    2010-04-14 06:11:52:921 1044 1f0 Service Service status is now SERVICE_RUNNING
    2010-04-14 06:11:52:921 1044 1f0 Service Event system starts running
    2010-04-14 06:11:52:921 1044 1f0 Service WARNING: WSASocket() for Ipv6 failed with error: 8007273f
    2010-04-14 06:11:52:921 1044 1f0 Service CIpAddressMonitor::CreateListenSocket returning with hr = 8007273f
    2010-04-14 06:11:52:921 1044 1f0 Service failed to start listening in CIpAddressMonitor with error 8007273f, because it is not initialized
    2010-04-14 06:11:52:937 1044 1f0 Service failed to start listening Ip V6 network monitor with error 8007273f
    2010-04-14 06:11:52:937 1044 1f0 Service Updated network state. Prev Num of Interfaces : 1, now : 1.
    2010-04-14 06:11:52:937 1044 1f0 Service Wait object starts waiting with timeout 44828 msecs
    2010-04-14 06:11:52:937 1044 1f0 Service Wait object starts waiting with timeout 44828 msecs
    2010-04-14 06:11:52:937 1044 1f0 Service WARNING: WSASocket() for Ipv6 failed with error: 8007273f
    2010-04-14 06:11:52:937 1044 1f0 Service CIpAddressMonitor::CreateListenSocket returning with hr = 8007273f
    2010-04-14 06:11:52:937 1044 1f0 Service failed to get network state for Ipv6 with error 8007273f, because CIpAddressMonitor is not initialized
    2010-04-14 06:11:52:937 1044 1f0 Service Network interfaces : 1
    2010-04-14 06:11:52:937 1044 1f0 Service networkState = 2. DidNetworkStatusChanged = 0, DidNetworkConnectivityOptionsChanged = 0
    2010-04-14 06:11:52:937 1044 1f0 Service Wait object starts waiting with timeout 44828 msecs
    2010-04-14 06:11:54:359 1044 1f0 Service Signal subscription event 7
    2010-04-14 06:11:54:359 1044 1f0 Service Wait object starts waiting with timeout 43406 msecs
    2010-04-14 06:12:38:289 1044 1f0 Service Event system dispatch events
    2010-04-14 06:12:38:289 1044 1f0 Agent start delayed initialization of WU client
    2010-04-14 06:12:38:289 1044 1f0 Report Logging events locally at C:\WINDOWS\SoftwareDistribution\ReportingEvents.log.
    2010-04-14 06:12:38:289 1044 1f0 Report Event cache directory at C:\WINDOWS\SoftwareDistribution\EventCache.
    2010-04-14 06:12:38:289 1044 1f0 Report BatchFlushAge = 15361.
    2010-04-14 06:12:38:289 1044 1f0 Report BatchFlushAgeSus = 584.
    2010-04-14 06:12:38:289 1044 1f0 Report SamplingValue2 = 800, sampling required = Yes, detect sampling required = Yes
    2010-04-14 06:12:38:289 1044 1f0 Report Write buffer is empty. Not scheduling a flush.
    2010-04-14 06:12:38:511 1044 1f0 Report Initializing uploader for new server 3da21691-e39d-4da6-8a4b-b43877bcb1b7.
    2010-04-14 06:12:38:543 1044 1f0 Report Server 3da21691-e39d-4da6-8a4b-b43877bcb1b7 had empty event cache. No uploader created.
    2010-04-14 06:12:38:543 1044 1f0 Report Failed to initialize event uploader for new server 3da21691-e39d-4da6-8a4b-b43877bcb1b7 with hr = 8024000c.
    2010-04-14 06:12:38:543 1044 1f0 Report WARNING: Found invalid server ID WU while enumerating event caches. Ignoring key. hr = 800706a9.
    2010-04-14 06:12:38:543 1044 1f0 Service WARNING: WSASocket() for Ipv6 failed with error: 8007273f
    2010-04-14 06:12:38:543 1044 1f0 Service CIpAddressMonitor::CreateListenSocket returning with hr = 8007273f
    2010-04-14 06:12:38:543 1044 1f0 Service failed to get network state for Ipv6 with error 8007273f, because CIpAddressMonitor is not initialized
    2010-04-14 06:12:38:543 1044 1f0 Service Network interfaces : 1
    2010-04-14 06:12:38:543 1044 1f0 Service Signal subscription event 8
    2010-04-14 06:12:38:543 1044 1f0 Service create subscription event for destination 2 and routing 0
    2010-04-14 06:12:38:543 1044 1f0 Service destination 2 subscribes for subscription 8 with internalrouting 0
    2010-04-14 06:12:38:543 1044 1f0 Service WARNING: WSASocket() for Ipv6 failed with error: 8007273f
    2010-04-14 06:12:38:543 1044 1f0 Service CIpAddressMonitor::CreateListenSocket returning with hr = 8007273f
    2010-04-14 06:12:38:543 1044 1f0 Service failed to get network state for Ipv6 with error 8007273f, because CIpAddressMonitor is not initialized
    2010-04-14 06:12:38:543 1044 1f0 Service Network interfaces : 1
    2010-04-14 06:12:38:543 1044 1f0 Service destination 2 subscribes for subscription 9 with internalrouting 0
    2010-04-14 06:12:38:543 1044 1f0 Agent ***********  Agent: Initializing Windows Update Agent  ***********
    2010-04-14 06:12:38:543 1044 1f0 Service destination 0 subscribes for subscription 2 with internalrouting 0
    2010-04-14 06:12:38:543 1044 1f0 Service destination 0 subscribes for subscription 7 with internalrouting 0
    2010-04-14 06:12:38:543 1044 1f0 Service WARNING: WSASocket() for Ipv6 failed with error: 8007273f
    2010-04-14 06:12:38:543 1044 1f0 Service CIpAddressMonitor::CreateListenSocket returning with hr = 8007273f
    2010-04-14 06:12:38:543 1044 1f0 Service failed to get network state for Ipv6 with error 8007273f, because CIpAddressMonitor is not initialized
    2010-04-14 06:12:38:543 1044 1f0 Service Network interfaces : 1
    2010-04-14 06:12:38:543 1044 1f0 Service Signal subscription event 8
    2010-04-14 06:12:38:543 1044 1f0 Service create subscription event for destination 2 and routing 0
    2010-04-14 06:12:38:543 1044 1f0 Service create subscription event for destination 0 and routing 0
    2010-04-14 06:12:38:543 1044 1f0 Service destination 0 subscribes for subscription 8 with internalrouting 0
    2010-04-14 06:12:38:543 1044 1f0 Service WARNING: WSASocket() for Ipv6 failed with error: 8007273f
    2010-04-14 06:12:38:543 1044 1f0 Service CIpAddressMonitor::CreateListenSocket returning with hr = 8007273f
    2010-04-14 06:12:38:543 1044 1f0 Service failed to get network state for Ipv6 with error 8007273f, because CIpAddressMonitor is not initialized
    2010-04-14 06:12:38:543 1044 1f0 Service Network interfaces : 1
    2010-04-14 06:12:38:543 1044 1f0 Service destination 0 subscribes for subscription 9 with internalrouting 0
    2010-04-14 06:12:38:543 1044 1f0 Service destination 0 subscribes for subscription 10 with internalrouting 0
    2010-04-14 06:12:38:543 1044 1f0 Service destination 0 subscribes for subscription 4 with internalrouting 0
    2010-04-14 06:12:38:543 1044 1f0 Agent refresh WU client global setting cache
    2010-04-14 06:12:38:591 1044 1f0 Agent ***********  Agent: Initializing global settings cache  ***********
    2010-04-14 06:12:38:591 1044 1f0 Agent   * WSUS server:http://wsus01
    2010-04-14 06:12:38:591 1044 1f0 Agent   * WSUS status server:http://wsus01
    2010-04-14 06:12:38:591 1044 1f0 Agent   * Target group: (Unassigned Computers)
    2010-04-14 06:12:38:591 1044 1f0 Agent   * Windows Update access disabled: No
    2010-04-14 06:12:38:591 1044 1f0 DtaStor Store locked. Internal lock count is 1
    2010-04-14 06:12:38:591 1044 1f0 DtaStor CSusEseSessionWrap ref count at 1
    2010-04-14 06:12:38:607  600 260 DtaStor Attempting to open table tbCcrDownloadData
    2010-04-14 06:12:38:607  600 260 DtaStor Opened table: tableid: 39911696
    2010-04-14 06:12:38:607  600 260 DtaStor Transaction begun. sesid 025A0320. Nesting: 0
    2010-04-14 06:12:38:607  600 260 DtaStor CSusEseSession reference count at 4
    2010-04-14 06:12:38:623  600 260 DtaStor Transaction rolled back. sesid: 025A0320. Nesting: 0
    2010-04-14 06:12:38:623  600 260 DtaStor CSusEseSession reference count at 3
    2010-04-14 06:12:38:623 1044 1f0 DtaStor CSusEseSessionWrap ref count at 0
    2010-04-14 06:12:38:623 1044 1f0 DtaStor Wrapper store lock count at 0
    2010-04-14 06:12:38:623 1044 1f0 DnldMgr Download manager restoring 0 downloads
    2010-04-14 06:12:38:654 1044 1f0 DtaStor Store locked. Internal lock count is 1
    2010-04-14 06:12:38:654  600 260 DtaStor Created new ESE session
    2010-04-14 06:12:38:654  600 260 DtaStor CSusEseSession reference count at 1
    2010-04-14 06:12:38:654  600 260 DtaStor CSusDatastore AddRef: refcount is 5
    2010-04-14 06:12:38:654  600 260 DtaStor Attempting to open table tbServiceData
    2010-04-14 06:12:38:654  600 260 DtaStor Opened table: tableid: 39911696
    2010-04-14 06:12:38:654  600 260 DtaStor Transaction begun. sesid 025A03C0. Nesting: 0
    2010-04-14 06:12:38:654  600 260 DtaStor CSusEseSession reference count at 2
    2010-04-14 06:12:38:686  600 260 DtaStor Transaction commited. sesid: 025A03C0. Nesting: 0
    2010-04-14 06:12:38:686  600 260 DtaStor CSusEseSession reference count at 1
    2010-04-14 06:12:38:686  600 260 DtaStor CSusEseSession reference count at 0
    2010-04-14 06:12:38:686  600 260 DtaStor CSusDatastore Release: refcount is 4
    2010-04-14 06:12:38:686 1044 1f0 DtaStor Wrapper store lock count at 0
    2010-04-14 06:12:38:686 1044 1f0 Agent DeleteVolatileServices::GetServiceList returned 2 services.
    2010-04-14 06:12:38:686 1044 1f0 Agent Client Call Recorder finished delayed initialization
    2010-04-14 06:12:38:686 1044 1f0 DtaStor Store locked. Internal lock count is 1
    2010-04-14 06:12:38:686 1044 1f0 DtaStor CSusEseSessionWrap ref count at 1
    2010-04-14 06:12:38:686  600 260 DtaStor Attempting to open table tbDownloadJob
    2010-04-14 06:12:38:686  600 260 DtaStor Opened table: tableid: 39911696
    2010-04-14 06:12:38:686  600 260 DtaStor Transaction begun. sesid 025A0320. Nesting: 0
    2010-04-14 06:12:38:686  600 260 DtaStor CSusEseSession reference count at 4
    2010-04-14 06:12:38:686  600 260 DtaStor Transaction rolled back. sesid: 025A0320. Nesting: 0
    2010-04-14 06:12:38:686  600 260 DtaStor CSusEseSession reference count at 3
    2010-04-14 06:12:38:686 1044 1f0 DtaStor CSusEseSessionWrap ref count at 0
    2010-04-14 06:12:38:686 1044 1f0 DtaStor Wrapper store lock count at 0
    2010-04-14 06:12:38:686 1044 1f0 Service new event 2 of type 2 added to event system
    2010-04-14 06:12:38:702 1044 1f0 DnldMgr DownloadManager SecsInADay = 86400.
    2010-04-14 06:12:38:702 1044 1f0 Service new event 3 of type 1 added to event system
    2010-04-14 06:12:38:718 1044 1f0 Report PostReboot: Loading pending event groups.
    2010-04-14 06:12:38:718 1044 1f0 Report PostReboot: Using callback event expiration age: 1209600
    2010-04-14 06:12:38:718 1044 1f0 Report PostReboot: Inited pending event handler with 0 groups, 0 pending polled events, and 0 pending callback events.
    2010-04-14 06:12:38:718 1044 1f0 Service Signal subscription event 19
    2010-04-14 06:12:38:718 1044 1f0 AU ###########  AU: Initializing Automatic Updates  ###########
    2010-04-14 06:12:38:718 1044 1f0 AU AU setting next sqm report timeout to 2010-04-14 13:12:38
    2010-04-14 06:12:38:734 1044 1f0 DtaStor Store locked. Internal lock count is 1
    2010-04-14 06:12:38:734  600 260 DtaStor Retrieved existing ESE session
    2010-04-14 06:12:38:734  600 260 DtaStor CSusEseSession reference count at 1
    2010-04-14 06:12:38:734  600 260 DtaStor CSusDatastore AddRef: refcount is 5
    2010-04-14 06:12:38:734  600 260 DtaStor Attempting to open table tbServiceData
    2010-04-14 06:12:38:734  600 260 DtaStor Opened table: tableid: 39911696
    2010-04-14 06:12:38:734  600 260 DtaStor Transaction begun. sesid 025A03C0. Nesting: 0
    2010-04-14 06:12:38:734  600 260 DtaStor CSusEseSession reference count at 2
    2010-04-14 06:12:38:734  600 260 DtaStor Transaction commited. sesid: 025A03C0. Nesting: 0
    2010-04-14 06:12:38:734  600 260 DtaStor CSusEseSession reference count at 1
    2010-04-14 06:12:38:734  600 260 DtaStor CSusEseSession reference count at 0
    2010-04-14 06:12:38:734  600 260 DtaStor CSusDatastore Release: refcount is 4
    2010-04-14 06:12:38:734 1044 1f0 DtaStor Wrapper store lock count at 0
    2010-04-14 06:12:38:734 1044 1f0 AU   # WSUS server:http://wsus01
    2010-04-14 06:12:38:734 1044 1f0 AU   # Detection frequency: 22
    2010-04-14 06:12:38:734 1044 1f0 AU   # Approval type: Scheduled (Policy)
    2010-04-14 06:12:38:734 1044 1f0 AU   # Scheduled install day/time: Every day at 3:00
    2010-04-14 06:12:38:734 1044 1f0 AU   # Auto-install minor updates: Yes (Policy)
    2010-04-14 06:12:38:734 1044 1f0 AU   # Will interact with non-admins (Non-admins are elevated (Policy))
    2010-04-14 06:12:38:734 1044 1f0 Service destination 1 subscribes for subscription 3 with internalrouting 3
    2010-04-14 06:12:38:734 1044 1f0 Service destination 1 subscribes for subscription 5 with internalrouting 3
    2010-04-14 06:12:38:734 1044 1f0 Service destination 1 subscribes for subscription 4 with internalrouting 3
    2010-04-14 06:12:38:734 1044 1f0 Service destination 1 subscribes for subscription 6 with internalrouting 3
    2010-04-14 06:12:38:734 1044 1f0 DtaStor Store locked. Internal lock count is 1
    2010-04-14 06:12:38:734 1044 1f0 DtaStor CSusEseSessionWrap ref count at 1
    2010-04-14 06:12:38:734  600 260 DtaStor Attempting to open table tbAUState
    2010-04-14 06:12:38:734  600 260 DtaStor Opened table: tableid: 39911696
    2010-04-14 06:12:38:734  600 260 DtaStor Transaction begun. sesid 025A0320. Nesting: 0
    2010-04-14 06:12:38:734  600 260 DtaStor CSusEseSession reference count at 4
    2010-04-14 06:12:38:734  600 260 DtaStor Transaction rolled back. sesid: 025A0320. Nesting: 0
    2010-04-14 06:12:38:734  600 260 DtaStor CSusEseSession reference count at 3
    2010-04-14 06:12:38:734 1044 1f0 DtaStor CSusEseSessionWrap ref count at 0
    2010-04-14 06:12:38:734 1044 1f0 DtaStor Wrapper store lock count at 0
    2010-04-14 06:12:38:734 1044 1f0 AU **************Dumping AU Update Manager*****************
    2010-04-14 06:12:38:734 1044 1f0 AU Number of updates for list 0: 0
    2010-04-14 06:12:38:734 1044 1f0 AU ********************************************************
    2010-04-14 06:12:38:734 1044 1f0 AU Number of updates for list 1: 0
    2010-04-14 06:12:38:734 1044 1f0 AU ********************************************************
    2010-04-14 06:12:38:750 1044 1f0 Service destination 1 subscribes for subscription 11 with internalrouting 0
    2010-04-14 06:12:38:750 1044 1f0 Service destination 1 subscribes for subscription 12 with internalrouting 0
    2010-04-14 06:12:38:750 1044 1f0 Service destination 1 subscribes for subscription 15 with internalrouting 0
    2010-04-14 06:12:38:750 1044 1f0 Service destination 1 subscribes for subscription 16 with internalrouting 0
    2010-04-14 06:12:38:750 1044 1f0 AU No pending calls to reconnect
    2010-04-14 06:12:38:750 1044 1f0 Service destination 1 subscribes for subscription 17 with internalrouting 2
    2010-04-14 06:12:38:750 1044 1f0 AU Setting the Reschedule timeout
    2010-04-14 06:12:38:750 1044 1f0 Service new event 31 of type 1 added to event system
    2010-04-14 06:12:38:750 1044 1f0 Agent Access is granted
    2010-04-14 06:12:38:750 1044 1f0 Handler CUHHandlerBase::AddRef: refcount is 2
    2010-04-14 06:12:38:750 1044 1f0 Handler CUHHandlerBase::Release: refcount is 1
    2010-04-14 06:12:38:750 1044 1f0 Agent WU client internal API CClientCallRecorder::CanInstallNow succeeds
    2010-04-14 06:12:38:750 1044 1f0 AU Nonexclusive updates: total=0, have high-pri=FALSE, have important=FALSE, have recommended=FALSE, have optional=FALSE
    2010-04-14 06:12:38:750 1044 1f0 AU Exclusive updates: high-pri=0, important=0, recommended=0, optional=0
    2010-04-14 06:12:38:750 1044 1f0 AU Ignore download status while finding the first update group
    2010-04-14 06:12:38:750 1044 1f0 AU Initializing featured updates
    2010-04-14 06:12:38:750 1044 1f0 AU Found 0 cached featured updates
    2010-04-14 06:12:38:750 1044 1f0 Service destination 1 subscribes for subscription 14 with internalrouting 5
    2010-04-14 06:12:38:750 1044 1f0 Service destination 1 subscribes for subscription 13 with internalrouting 5
    2010-04-14 06:12:38:750 1044 1f0 Service destination 1 subscribes for subscription 20 with internalrouting 5
    2010-04-14 06:12:38:750 1044 1f0 Service destination 1 subscribes for subscription 7 with internalrouting 5
    2010-04-14 06:12:38:750 1044 1f0 AU AU class object already registered, no need to do it again
    2010-04-14 06:12:38:750 1044 1f0 Agent Access is granted
    2010-04-14 06:12:38:750 1044 1f0 Handler CUHHandlerBase::AddRef: refcount is 2
    2010-04-14 06:12:38:750 1044 1f0 Handler CUHHandlerBase::Release: refcount is 1
    2010-04-14 06:12:38:750 1044 1f0 Agent WU client internal API CClientCallRecorder::CanInstallNow succeeds
    2010-04-14 06:12:38:750 1044 1f0 Agent Access is granted
    2010-04-14 06:12:38:750 1044 1f0 Handler CUHHandlerBase::AddRef: refcount is 2
    2010-04-14 06:12:38:750 1044 1f0 Handler CUHHandlerBase::Release: refcount is 1
    2010-04-14 06:12:38:750 1044 1f0 Agent WU client internal API CClientCallRecorder::CanInstallNow succeeds
    2010-04-14 06:12:38:750 1044 1f0 DtaStor Store locked. Internal lock count is 1
    2010-04-14 06:12:38:750 1044 1f0 DtaStor CSusEseSessionWrap ref count at 1
    2010-04-14 06:12:38:750  600 260 DtaStor Section 6 locked by session 000C0728 (thread: 608)
    2010-04-14 06:12:38:750  600 260 DtaStor Attempting to open table tbAUState
    2010-04-14 06:12:38:750  600 260 DtaStor Opened table: tableid: 39911696
    2010-04-14 06:12:38:750  600 260 DtaStor Transaction begun. sesid 025A0320. Nesting: 0
    2010-04-14 06:12:38:750  600 260 DtaStor CSusEseSession reference count at 4
    2010-04-14 06:12:38:750  600 260 DtaStor Transaction commited. sesid: 025A0320. Nesting: 0
    2010-04-14 06:12:38:750  600 260 DtaStor CSusEseSession reference count at 3
    2010-04-14 06:12:38:750  600 260 DtaStor Section 6 unlocked by session 000C0728 (thread: 608)
    2010-04-14 06:12:38:750 1044 1f0 DtaStor CSusEseSessionWrap ref count at 0
    2010-04-14 06:12:38:750 1044 1f0 DtaStor Wrapper store lock count at 0
    2010-04-14 06:12:38:750 1044 1f0 Service new event 27 of type 1 added to event system
    2010-04-14 06:12:38:750 1044 1f0 Service destination 1 subscribes for subscription 7 with internalrouting 5
    2010-04-14 06:12:38:750 1044 1f0 AU AU finished delayed initialization
    2010-04-14 06:12:38:750 1044 1f0 Service Event system dispatch events
    2010-04-14 06:12:38:750 1044 1f0 Report SUS Client Agent event received.
    2010-04-14 06:12:38:750 1044 1f0 Report CEventQueue received eventing system event: 3
    2010-04-14 06:12:38:750 1044 1f0 Report Not detaching: buffer empty.
    2010-04-14 06:12:38:750 1044 1f0 Report Not flushing: no read buffers available.
    2010-04-14 06:12:38:750 1044 1f0 Report Network connection detected.
    2010-04-14 06:12:38:750 1044 1f0 Service Event system dispatch events
    2010-04-14 06:12:38:750 1044 1f0 Report SUS Client Agent event received.
    2010-04-14 06:12:38:750 1044 1f0 Report CEventQueue received eventing system event: 3
    2010-04-14 06:12:38:750 1044 1f0 Report Not detaching: buffer empty.
    2010-04-14 06:12:38:750 1044 1f0 Report Not flushing: no read buffers available.
    2010-04-14 06:12:38:766 1044 1f0 Report Network connection detected.
    2010-04-14 06:12:38:766 1044 1f0 Service Event system dispatch events
    2010-04-14 06:12:38:766 1044 1f0 Agent ClientId will be hardware-verified.
    2010-04-14 06:12:38:766 1044 1f0 Agent Found NIC: 00:0b:...
    2010-04-14 06:12:39:512 1044 1f0 Agent System Drive: C:
    2010-04-14 06:12:39:544 1044 1f0 Agent System Disk: 0
    2010-04-14 06:12:40:005 1044 1f0 Agent Serial Number:       VNVC02G3DAMMWT
    2010-04-14 06:12:40:037 1044 1f0 Agent Enclosure Serial Number: JJW6J31
    2010-04-14 06:12:40:052 1044 1f0 Agent MB Serial Number: ..CN7082137JJ05P.
    2010-04-14 06:12:40:052 1044 1f0 Agent Hardware is identical.
    2010-04-14 06:12:40:052 1044 1f0 Agent Drive Matches.
    2010-04-14 06:12:40:052 1044 1f0 Agent Hardware is NOT a new machine.
    Continued...

    Part 2:
    2010-04-14 06:12:40:068 1044 1f0 Report ***********  Report: Initializing static reporting data  ***********
    2010-04-14 06:12:40:068 1044 1f0 Report   * OS Version = 5.1.2600.3.0.65792
    2010-04-14 06:12:40:307 1044 1f0 Report   * Computer Brand = Dell Computer Corporation
    2010-04-14 06:12:40:307 1044 1f0 Report   * Computer Model = Dimension 2400              
    2010-04-14 06:12:40:338 1044 1f0 Report   * Bios Revision = A05
    2010-04-14 06:12:40:338 1044 1f0 Report   * Bios Name = Phoenix ROM BIOS PLUS Version 1.10 A05
    2010-04-14 06:12:40:354 1044 1f0 Report   * Bios Release Date = 2003-12-02T00:00:00
    2010-04-14 06:12:40:354 1044 1f0 Report   * Locale ID = 1033
    2010-04-14 06:12:40:354 1044 1f0 Misc Obtaining WSUS binary version numbers:
    2010-04-14 06:12:40:450 1044 1f0 Misc    ClientVersion: wuapi.dll = 7.4.7600.226
    2010-04-14 06:12:40:450 1044 1f0 Misc    ClientVersion: wuauclt.exe = 7.4.7600.226
    2010-04-14 06:12:40:561 1044 1f0 Misc    ClientVersion: wuaucpl.cpl = 7.4.7600.226
    2010-04-14 06:12:40:561 1044 1f0 Misc    ClientVersion: wuaueng.dll = 7.4.7600.226
    2010-04-14 06:12:40:561 1044 1f0 Misc    ClientVersion: wuauserv.dll = 5.4.3790.5512
    2010-04-14 06:12:40:656 1044 1f0 Misc    ClientVersion: wucltui.dll = 7.4.7600.226
    2010-04-14 06:12:40:656 1044 1f0 Report BuildEvent() succeeded.
    2010-04-14 06:12:40:656 1044 1f0 Report *****Dumping event {1AFBB8E2-43BF-43E1-94C1-630A7B654DD8}:
    2010-04-14 06:12:40:656 1044 1f0 Report  EventId 252, Source Id 101, Caller Windows Update Agent:
    2010-04-14 06:12:40:656 1044 1f0 Report  Replacement strings: 0
    2010-04-14 06:12:40:656 1044 1f0 Report  Misc data strings: 7
    2010-04-14 06:12:40:656 1044 1f0 Report   Q=1
    2010-04-14 06:12:40:656 1044 1f0 Report   m=4
    2010-04-14 06:12:40:656 1044 1f0 Report   n=0
    2010-04-14 06:12:40:656 1044 1f0 Report   G=7.4.7600.226
    2010-04-14 06:12:40:656 1044 1f0 Report   J=800
    2010-04-14 06:12:40:656 1044 1f0 Report   K=Phoenix ROM BIOS PLUS Version 1.10 A05
    2010-04-14 06:12:40:656 1044 1f0 Report   L=2003-12-02T00:00:00
    2010-04-14 06:12:40:656 1044 1f0 Report Queuing 1 events inCEventQueue@01C14E88.
    2010-04-14 06:12:40:656 1044 1f0 Service new event 20 of type 1 added to event system
    2010-04-14 06:12:40:656 1044 1f0 Report Not detaching: thresholds not met. (Size = 1)
    2010-04-14 06:12:40:656 1044 1f0 Report Not flushing: no read buffers available.
    2010-04-14 06:12:40:656 1044 1f0 Report ReportEvent() succeeded.
    2010-04-14 06:12:40:656 1044 1f0 Service Event system dispatch events
    2010-04-14 06:12:40:656 1044 1f0 Agent add custom handle 0xb58 to event system
    2010-04-14 06:12:40:656 1044 1f0 Service new event 7 of type 0 added to event system
    2010-04-14 06:12:40:656 1044 1f0 Agent successfully obtain work item type 0
    2010-04-14 06:12:40:656 1044 1f0 Service Wait object starts waiting with timeout 5000 msecs
    2010-04-14 06:12:40:656 1044 1f0 Service Wait object starts waiting with timeout 5000 msecs
    2010-04-14 06:12:40:672 1044 3dc DtaStor Store locked. Internal lock count is 1
    2010-04-14 06:12:40:672 1044 3dc DtaStor CSusEseSessionWrap ref count at 1
    2010-04-14 06:12:40:672 1044 3dc DnldMgr Starting update metadata cache purge; currently 0 entries.
    2010-04-14 06:12:40:672 1044 3dc DnldMgr Finished update metadata cache purge; now 0 entries.
    2010-04-14 06:12:40:672 1044 3dc DnldMgr Starting locked revision cache purge; currently 0 entries.
    2010-04-14 06:12:40:672 1044 3dc DnldMgr Finished locked revision cache purge; now 0 entries.
    2010-04-14 06:12:40:672 1044 3dc DtaStor CSusEseSessionWrap ref count at 0
    2010-04-14 06:12:40:672 1044 3dc DtaStor Wrapper store lock count at 0
    2010-04-14 06:12:40:672 1044 3dc DtaStor Store locked. Internal lock count is 1
    2010-04-14 06:12:40:672 1044 3dc DtaStor CSusEseSessionWrap ref count at 1
    2010-04-14 06:12:40:672 1044 3dc DnldMgr Starting garbage collection for files.
    2010-04-14 06:12:40:672  600 260 DtaStor Attempting to open table tbFiles
    2010-04-14 06:12:40:672  600 260 DtaStor Opened table: tableid: 39911696
    2010-04-14 06:12:40:672  600 260 DtaStor Transaction begun. sesid 025A0320. Nesting: 0
    2010-04-14 06:12:40:672  600 260 DtaStor CSusEseSession reference count at 4
    2010-04-14 06:12:40:704  600 260 DtaStor No expired files found
    2010-04-14 06:12:40:704  600 260 DtaStor Transaction rolled back. sesid: 025A0320. Nesting: 0
    2010-04-14 06:12:40:704  600 260 DtaStor CSusEseSession reference count at 3
    2010-04-14 06:12:40:704 1044 3dc DnldMgr Found 0 expired files to delete.
    2010-04-14 06:12:40:704 1044 3dc DtaStor CSusEseSessionWrap ref count at 0
    2010-04-14 06:12:40:704 1044 3dc DtaStor Wrapper store lock count at 0
    2010-04-14 06:12:40:704 1044 3dc DtaStor Store locked. Internal lock count is 1
    2010-04-14 06:12:40:704 1044 3dc DtaStor CSusEseSessionWrap ref count at 1
    2010-04-14 06:12:40:704 1044 3dc DnldMgr Starting garbage collection for updates.
    2010-04-14 06:12:40:704  600 260 DtaStor Attempting to open table tbUpdates
    2010-04-14 06:12:40:704  600 260 DtaStor Opened table: tableid: 39911696
    2010-04-14 06:12:40:704  600 260 DtaStor Transaction begun. sesid 025A0320. Nesting: 0
    2010-04-14 06:12:40:704  600 260 DtaStor CSusEseSession reference count at 4
    2010-04-14 06:12:41:673  600 260 DtaStor No expired updates found
    2010-04-14 06:12:41:673  600 260 DtaStor Transaction rolled back. sesid: 025A0320. Nesting: 0
    2010-04-14 06:12:41:673  600 260 DtaStor CSusEseSession reference count at 3
    2010-04-14 06:12:41:673 1044 3dc DnldMgr Found 0 expired updates to delete.
    2010-04-14 06:12:41:673 1044 3dc DtaStor CSusEseSessionWrap ref count at 0
    2010-04-14 06:12:41:673 1044 3dc DtaStor Wrapper store lock count at 0
    2010-04-14 06:12:41:673 1044 1f0 Service Event system dispatch events
    2010-04-14 06:12:41:689 1044 1f0 Agent One work item is available
    2010-04-14 06:12:41:689 1044 1f0 Agent work item of type 0 is available
    2010-04-14 06:12:41:689 1044 1f0 Service custom handle 0xb58 removed from event system successfully
    2010-04-14 06:12:41:689 1044 1f0 Service Wait object starts waiting with timeout 3967 msecs
    2010-04-14 06:12:45:724 1044 1f0 Service Event system dispatch events
    2010-04-14 06:12:45:724 1044 1f0 Report SUS Client Agent event received.
    2010-04-14 06:12:45:724 1044 1f0 Report CEventQueue received eventing system event: 1
    2010-04-14 06:12:45:724 1044 1f0 Report Detaching: timestamp old.
    2010-04-14 06:12:45:724 1044 1f0 Report Flushing: read buffers available.
    2010-04-14 06:12:45:724 1044 1f0 Report Submitting work item thread request.
    2010-04-14 06:12:45:724 1044 1f0 Service new event 19 of type 2 added to event system
    2010-04-14 06:12:45:724 1044 1f0 Service Event system dispatch events
    2010-04-14 06:12:45:724 1044 1f0 Agent add custom handle 0xb58 to event system
    2010-04-14 06:12:45:724 1044 1f0 Service new event 7 of type 0 added to event system
    2010-04-14 06:12:45:724 1044 3dc Report Asynchronously flushingCEventQueue@01C14E88.
    2010-04-14 06:12:45:724 1044 3dc Report Asynchronously flushingCEventQueue@01C14E88.
    2010-04-14 06:12:45:724 1044 3dc Report Dispatching events inCEventDispatcher@01C14370.
    2010-04-14 06:12:45:724 1044 3dc Report CLocalEventLogWriter: Handling 1 events.
    2010-04-14 06:12:45:724 1044 3dc Report CLocalEventLogWriter finishing event handling. (00000000)
    2010-04-14 06:12:45:724 1044 3dc Report WARNING: Got attempt to log unexpected event ID 252 to the NT event log.
    2010-04-14 06:12:45:724 1044 3dc Report Filtering 1 events inCEventFilter@01C14F38.
    2010-04-14 06:12:45:724 1044 1f0 Agent successfully obtain work item type 0
    2010-04-14 06:12:45:724 1044 1f0 Service Wait object starts waiting with timeout 1755103 msecs
    2010-04-14 06:12:45:724 1044 1f0 Service Wait object starts waiting with timeout 1755103 msecs
    2010-04-14 06:12:45:724 1044 3dc Report Event failed sampling filter.
    2010-04-14 06:12:45:740 1044 3dc Report Filtered down to 0 events.
    2010-04-14 06:12:45:740 1044 3dc Report Filtering 0 events inCEventFilter@01C14F0C.
    2010-04-14 06:12:45:740 1044 3dc Report Filtered down to 0 events.
    2010-04-14 06:12:45:740 1044 3dc Report Done with asynchronous flush.
    2010-04-14 06:12:45:756 1044 1f0 Service Event system dispatch events
    2010-04-14 06:12:45:756 1044 1f0 Agent One work item is available
    2010-04-14 06:12:45:756 1044 1f0 Agent work item of type 0 is available
    2010-04-14 06:12:45:756 1044 1f0 Service custom handle 0xb58 removed from event system successfully
    2010-04-14 06:12:45:756 1044 1f0 Service Wait object starts waiting with timeout 1755071 msecs
    2010-04-14 06:16:57:610 1044 3e0 DtaStor Shutdown timer fired.  Releasing store objects.
    2010-04-14 06:16:57:610  600 260 DtaStor CSusEseSession reference count at 2
    2010-04-14 06:16:57:610  600 260 DtaStor CSusEseSession reference count at 1
    2010-04-14 06:16:57:610  600 260 DtaStor CSusEseSession reference count at 0
    2010-04-14 06:16:57:610  600 260 DtaStor CSusDatastore Release: refcount is 3
    2010-04-14 06:16:57:610  600 260 DtaStor CSusDatastore Release: refcount is 2
    2010-04-14 06:16:57:610  600 260 DtaStor CSusDatastore Release: refcount is 1
    2010-04-14 06:16:57:610  600 260 DtaStor CSusDatastore Release: refcount is 0
    2010-04-14 06:16:57:610  600 260 DtaStor Out of proc datastore is shutting down
    2010-04-14 06:16:57:610  600 260 DtaStor CSusDatastoreWrap QI: unsupported interface requested
    2010-04-14 06:16:57:610  600 260 DtaStor CSusDatastoreWrap QI: IUnknown
    2010-04-14 06:16:57:816  600 260 DtaStor SUS client data store uninitialized
    2010-04-14 06:16:58:833  600 260 DtaStor Out of proc datastore is now inactive
    2010-04-14 06:16:58:865  600 260 AUClnt wuauclt.exe is exiting with code 0x00000000
    2010-04-14 06:20:46:274 1044 418 Service Service received connect notification
    2010-04-14 06:20:46:274 1044 418 Service Signal subscription event 5
    2010-04-14 06:20:46:274 1044 418 Service create subscription event for destination 1 and routing 3
    2010-04-14 06:20:46:274 1044 1f0 Service Event system dispatch events
    2010-04-14 06:20:46:274 1044 1f0 AU AU received event of type: 3
    2010-04-14 06:20:46:274 1044 1f0 Service Wait object starts waiting with timeout 1274553 msecs
    2010-04-14 06:20:48:632 1044 418 Service Service received logon notification
    2010-04-14 06:20:48:632 1044 418 Service Signal subscription event 3
    2010-04-14 06:20:48:632 1044 418 Service create subscription event for destination 1 and routing 3
    2010-04-14 06:20:48:632 1044 1f0 Service Event system dispatch events
    2010-04-14 06:20:48:632 1044 1f0 AU AU received event of type: 3
    2010-04-14 06:20:48:632 1044 1f0 Service Wait object starts waiting with timeout 1272195 msecs
    2010-04-14 06:36:38:128 1044 340 AU AddRef: refcount is 3
    2010-04-14 06:36:38:128 1044 340 AU AddRef: refcount is 4
    2010-04-14 06:36:38:128 1044 340 AU Release: refcount is 3
    2010-04-14 06:36:38:128 1044 340 AU AddRef: refcount is 4
    2010-04-14 06:36:38:128 1044 340 AU AddRef: refcount is 5
    2010-04-14 06:36:38:128 1044 340 AU AddRef: refcount is 6
    2010-04-14 06:36:38:128 1044 340 AU AddRef: refcount is 7
    2010-04-14 06:36:38:128 1044 340 AU Release: refcount is 6
    2010-04-14 06:36:38:128 1044 340 AU AddRef: refcount is 7
    2010-04-14 06:36:38:144 1044 340 AU AddRef: refcount is 8
    2010-04-14 06:36:38:144 1044 340 AU Release: refcount is 7
    2010-04-14 06:36:38:144 1044 340 AU Release: refcount is 6
    2010-04-14 06:36:38:144 1044 340 AU Release: refcount is 5
    2010-04-14 06:36:38:144 1044 340 Service GetSessionIdFromToken returned sessionId 0
    2010-04-14 06:36:38:144 1044 340 Agent Access is granted
    2010-04-14 06:36:38:144 1044 340 Handler CUHHandlerBase::AddRef: refcount is 2
    2010-04-14 06:36:38:144 1044 340 Handler CUHHandlerBase::Release: refcount is 1
    2010-04-14 06:36:38:144 1044 340 Agent WU client internal API CClientCallRecorder::CanInstallNow succeeds
    2010-04-14 06:36:38:144 1044 340 AU Nonexclusive updates: total=0, have high-pri=FALSE, have important=FALSE, have recommended=FALSE, have optional=FALSE
    2010-04-14 06:36:38:159 1044 340 AU Exclusive updates: high-pri=0, important=0, recommended=0, optional=0
    2010-04-14 06:36:38:159 1044 340 AU Ignore download status while finding the first update group
    2010-04-14 06:36:38:159 1044 340 AU AU found 0 updates for install at shutdown
    2010-04-14 06:36:38:159 1044 93c AU Release: refcount is 4
    2010-04-14 06:36:38:159 1044 93c AU Release: refcount is 3
    2010-04-14 06:36:38:159 1044 93c AU Release: refcount is 2
    2010-04-14 06:36:38:159  488 10c Misc ===========  Logging initialized (build: 7.4.7600.226, tz: -0700)  ===========
    2010-04-14 06:36:38:159  488 10c Misc   = Process: C:\WINDOWS\Explorer.EXE
    2010-04-14 06:36:38:159  488 10c Misc   = Module: C:\WINDOWS\system32\wuaueng.dll
    2010-04-14 06:36:38:159  488 10c Shutdwn Install at shutdown: no updates to install
    2010-04-14 06:36:44:989 1044 418 Service Service received logoff notification
    2010-04-14 06:36:44:989 1044 418 Service Signal subscription event 4
    2010-04-14 06:36:44:989 1044 418 Service create subscription event for destination 0 and routing 0
    2010-04-14 06:36:44:989 1044 418 Service create subscription event for destination 1 and routing 3
    2010-04-14 06:36:44:989 1044 1f0 Service Event system dispatch events
    2010-04-14 06:36:44:989 1044 1f0 Service Event system dispatch events
    2010-04-14 06:36:44:989 1044 1f0 AU AU received event of type: 3
    2010-04-14 06:36:44:989 1044 1f0 Agent Access is granted
    2010-04-14 06:36:44:989 1044 1f0 Handler CUHHandlerBase::AddRef: refcount is 2
    2010-04-14 06:36:44:989 1044 1f0 Handler CUHHandlerBase::Release: refcount is 1
    2010-04-14 06:36:44:989 1044 1f0 Agent WU client internal API CClientCallRecorder::CanInstallNow succeeds
    2010-04-14 06:36:44:989 1044 1f0 Service Wait object starts waiting with timeout 315838 msecs
    2010-04-14 06:36:49:318 1044 93c AU AddRef: refcount is 3
    2010-04-14 06:36:49:318 1044 93c AU AddRef: refcount is 4
    2010-04-14 06:36:49:318 1044 93c AU Release: refcount is 3
    2010-04-14 06:36:49:318 1044 93c AU AddRef: refcount is 4
    2010-04-14 06:36:49:318 1044 93c AU AddRef: refcount is 5
    2010-04-14 06:36:49:318 1044 93c AU AddRef: refcount is 6
    2010-04-14 06:36:49:318 1044 93c AU AddRef: refcount is 7
    2010-04-14 06:36:49:318 1044 93c AU Release: refcount is 6
    2010-04-14 06:36:49:318 1044 93c AU AddRef: refcount is 7
    2010-04-14 06:36:49:318 1044 93c AU AddRef: refcount is 8
    2010-04-14 06:36:49:318 1044 93c AU Release: refcount is 7
    2010-04-14 06:36:49:318 1044 93c AU Release: refcount is 6
    2010-04-14 06:36:49:318 1044 93c AU Release: refcount is 5
    2010-04-14 06:36:49:381 1044 93c Agent Access is granted
    2010-04-14 06:36:49:381 1044 93c Handler CUHHandlerBase::AddRef: refcount is 2
    2010-04-14 06:36:49:381 1044 93c Handler CUHHandlerBase::Release: refcount is 1
    2010-04-14 06:36:49:381 1044 93c Agent WU client internal API CClientCallRecorder::CanInstallNow succeeds
    2010-04-14 06:36:49:381 1044 93c AU Pausing AU through Pause api. Pause count = 1
    2010-04-14 06:36:49:381 1044 93c AU Asking all AU clients to shut down
    2010-04-14 06:36:49:381 1044 93c Service new event 14 of type 1 added to event system
    2010-04-14 06:36:49:381 1044 93c Report BuildEvent() succeeded.
    2010-04-14 06:36:49:381 1044 93c Report *****Dumping event {046C1C42-1470-4C93-9F2F-7A096D91B8FD}:
    2010-04-14 06:36:49:381 1044 93c Report  EventId 241, Source Id 102, Caller AutomaticUpdates:
    2010-04-14 06:36:49:381 1044 93c Report  Replacement strings: 0
    2010-04-14 06:36:49:381 1044 93c Report  Misc data strings: 7
    2010-04-14 06:36:49:381 1044 93c Report   Q=1
    2010-04-14 06:36:49:396 1044 93c Report   m=4
    2010-04-14 06:36:49:396 1044 93c Report   n=0
    2010-04-14 06:36:49:396 1044 93c Report   G=7.4.7600.226
    2010-04-14 06:36:49:396 1044 93c Report   J=800
    2010-04-14 06:36:49:396 1044 93c Report   K=Phoenix ROM BIOS PLUS Version 1.10 A05
    2010-04-14 06:36:49:396 1044 93c Report   L=2003-12-02T00:00:00
    2010-04-14 06:36:49:396 1044 93c Report Queuing 1 events inCEventQueue@01C14E88.
    2010-04-14 06:36:49:396 1044 1f0 Service Wait object starts waiting with timeout 5000 msecs
    2010-04-14 06:36:49:396 1044 93c Service new event 20 of type 1 added to event system
    2010-04-14 06:36:49:396 1044 93c Report Not detaching: thresholds not met. (Size = 1)
    2010-04-14 06:36:49:396 1044 93c Report Not flushing: no read buffers available.
    2010-04-14 06:36:49:396 1044 93c Report ReportEvent() succeeded.
    2010-04-14 06:36:49:396 1044 c68 AU Release: refcount is 4
    2010-04-14 06:36:49:396 1044 c68 AU Release: refcount is 3
    2010-04-14 06:36:49:396 1044 c68 AU Release: refcount is 2
    2010-04-14 06:36:52:084 1044 418 Service Service received SERVICE_CONTROL_SHUTDOWN control
    2010-04-14 06:36:52:084 1044 418 Service updated service status to 3
    2010-04-14 06:36:52:084 1044 418 Service Signal subscription event 1
    2010-04-14 06:36:52:084 1044 418 Service create subscription event for destination 0 and routing 0
    2010-04-14 06:36:52:084 1044 1f0 Service Event system dispatch events
    2010-04-14 06:36:52:084 1044 1f0 Report BuildEvent() succeeded.
    2010-04-14 06:36:52:084 1044 1f0 Report *****Dumping event {0B3EAB3C-1D28-4DCE-93BC-E709360BC09C}:
    2010-04-14 06:36:52:100 1044 1f0 Report  EventId 254, Source Id 101, Caller Windows Update Agent:
    2010-04-14 06:36:52:100 1044 1f0 Report  Replacement strings: 0
    2010-04-14 06:36:52:100 1044 1f0 Report  Misc data strings: 7
    2010-04-14 06:36:52:100 1044 1f0 Report   Q=1
    2010-04-14 06:36:52:100 1044 1f0 Report   m=4
    2010-04-14 06:36:52:100 1044 1f0 Report   n=0
    2010-04-14 06:36:52:100 1044 1f0 Report   G=7.4.7600.226
    2010-04-14 06:36:52:100 1044 1f0 Report   J=800
    2010-04-14 06:36:52:100 1044 1f0 Report   K=Phoenix ROM BIOS PLUS Version 1.10 A05
    2010-04-14 06:36:52:100 1044 1f0 Report   L=2003-12-02T00:00:00
    2010-04-14 06:36:52:100 1044 1f0 Report Queuing 1 events inCEventQueue@01C14E88.
    2010-04-14 06:36:52:100 1044 1f0 Report Not detaching: thresholds not met. (Size = 2)
    2010-04-14 06:36:52:100 1044 1f0 Report Not flushing: no read buffers available.
    2010-04-14 06:36:52:100 1044 1f0 Report ReportEvent() succeeded.
    2010-04-14 06:36:52:100 1044 1f0 Service Exiting Service Main
    2010-04-14 06:36:52:100 1044 1f0 Service updated service status to 3
    2010-04-14 06:36:52:178 1044 1f0 AU AddRef: refcount is 3
    2010-04-14 06:36:52:178 1044 1f0 AU Release: refcount is 2
    2010-04-14 06:36:52:178 1044 1f0 AU AU Ref count reset, signalling event
    2010-04-14 06:36:52:178 1044 1f0 AU Release: refcount is 1
    2010-04-14 06:36:52:178 1044 1f0 AU AddRef: refcount is 2
    2010-04-14 06:36:52:178 1044 1f0 AU AU Ref count reset, signalling event
    2010-04-14 06:36:52:178 1044 1f0 AU Release: refcount is 1
    2010-04-14 06:36:52:178 1044 1f0 AU Asking all AU clients to shut down
    2010-04-14 06:36:52:178 1044 1f0 AU AddRef: refcount is 2
    2010-04-14 06:36:52:178 1044 1f0 AU AU Ref count reset, signalling event
    2010-04-14 06:36:52:178 1044 1f0 AU Release: refcount is 1
    2010-04-14 06:36:52:178 1044 1f0 AU ###########  AU: Uninitializing Automatic Updates  ###########
    2010-04-14 06:36:52:178 1044 1f0 Service destination 1 removes event subscription 14 and internalrouting 5
    2010-04-14 06:36:52:178 1044 1f0 Service destination 1 removes event subscription 7 and internalrouting 5
    2010-04-14 06:36:52:178 1044 1f0 Service destination 1 removes event subscription 13 and internalrouting 5
    2010-04-14 06:36:52:178 1044 1f0 Service destination 1 removes event subscription 20 and internalrouting 5
    2010-04-14 06:36:52:178 1044 1f0 Service destination 1 removes event subscription 17 and internalrouting 2
    2010-04-14 06:36:52:178 1044 1f0 Service event 31 of type 1 removed from event system
    2010-04-14 06:36:52:241 1044 1f0 Agent Access is granted
    2010-04-14 06:36:52:241 1044 1f0 Handler CUHHandlerBase::AddRef: refcount is 2
    2010-04-14 06:36:52:241 1044 1f0 Handler CUHHandlerBase::Release: refcount is 1
    2010-04-14 06:36:52:241 1044 1f0 Agent WU client internal API CClientCallRecorder::CanInstallNow succeeds
    2010-04-14 06:36:52:241 1044 1f0 Service destination 1 removes event subscription 8 and internalrouting 0
    2010-04-14 06:36:52:241 1044 1f0 Service destination 1 removes event subscription 11 and internalrouting 0
    2010-04-14 06:36:52:241 1044 1f0 Service destination 1 removes event subscription 12 and internalrouting 0
    2010-04-14 06:36:52:241 1044 1f0 Service destination 1 removes event subscription 15 and internalrouting 0
    2010-04-14 06:36:52:241 1044 1f0 Service destination 1 removes event subscription 16 and internalrouting 0
    2010-04-14 06:36:52:241 1044 1f0 Service event 27 of type 1 removed from event system
    2010-04-14 06:36:52:241 1044 1f0 Service destination 1 removes event subscription 3 and internalrouting 3
    2010-04-14 06:36:52:241 1044 1f0 Service destination 1 removes event subscription 5 and internalrouting 3
    2010-04-14 06:36:52:241 1044 1f0 Service destination 1 removes event subscription 4 and internalrouting 3
    2010-04-14 06:36:52:241 1044 1f0 Service destination 1 removes event subscription 6 and internalrouting 3
    2010-04-14 06:36:52:241 1044 1f0 Service destination 1 removes event subscription 8 and internalrouting 3
    2010-04-14 06:36:52:241 1044 1f0 DtaStor Timer queue timer was deleted
    2010-04-14 06:36:52:241 1044 1f0 DtaStor FATAL: DS: 0x80040154: Failed to CoCreate datastore
    2010-04-14 06:36:53:319 1044 1f0 DtaStor Attempt 0 to CoCreate the datastore succeeded
    2010-04-14 06:36:53:319 1044 1f0 DtaStor Session caching is enabled
    2010-04-14 06:36:53:319 1044 1f0 DtaStor Store locked. Internal lock count is 1
    2010-04-14 06:36:53:319 1044 1f0 DtaStor CSusEseSessionWrap ref count at 1
    2010-04-14 06:36:53:319 1044 1f0 DtaStor CSusEseSessionWrap ref count at 0
    2010-04-14 06:36:53:319 1044 1f0 DtaStor Wrapper store lock count at 0
    2010-04-14 06:36:53:319 1044 1f0 DtaStor Created timer queue timer with delay 300 sec
    2010-04-14 06:36:53:319 1044 1f0 AU **************Dumping AU Update Manager*****************
    2010-04-14 06:36:53:319 1044 1f0 AU Number of updates for list 0: 0
    2010-04-14 06:36:53:319 1044 1f0 AU ********************************************************
    2010-04-14 06:36:53:319 1044 1f0 AU Number of updates for list 1: 0
    2010-04-14 06:36:53:319 1044 1f0 AU ********************************************************
    2010-04-14 06:36:53:319 1044 1f0 Service destination 1 removes event subscription 18 and internalrouting 5
    2010-04-14 06:36:53:334 1044 1f0 Service event 14 of type 1 removed from event system
    2010-04-14 06:36:53:334 1044 1f0 Agent ref count on CCR after Release is 3
    2010-04-14 06:36:53:334 1044 1f0 Agent ref count on CCR after Release is 2
    2010-04-14 06:36:53:334 1044 1f0 DnldMgr AddRef: ref count -> 2
    2010-04-14 06:36:53:334 1044 1f0 DnldMgr Release: ref count -> 1
    2010-04-14 06:36:53:334 1044 1f0 DnldMgr Release: ref count -> 0
    2010-04-14 06:36:53:334 1044 1f0 DnldMgr Waiting for m_hSafeToDeleteEvent
    2010-04-14 06:36:53:334 1044 1f0 DnldMgr DH Listener Release: ref count -> 0
    2010-04-14 06:36:53:334 1044 1f0 DnldMgr DH Listener waiting for m_hSafeToDeleteEvent
    2010-04-14 06:36:53:334 1044 1f0 Agent ref count on CCR after AddRef is 3
    2010-04-14 06:36:53:334 1044 1f0 Agent ref count on CCR after Release is 2
    2010-04-14 06:36:53:334 1044 1f0 Agent ref count on CCR after Release is 1
    2010-04-14 06:36:53:334 1044 1f0 Agent ref count on CCR after AddRef is 2
    2010-04-14 06:36:53:334 1044 1f0 Agent ref count on CCR after Release is 1
    2010-04-14 06:36:53:334 1044 1f0 Agent WU client waiting for active callers to leave
    2010-04-14 06:36:53:334 1044 1f0 Agent WU client releasing client references
    2010-04-14 06:36:53:334 1044 1f0 Agent WU client waiting for reference count to reset
    2010-04-14 06:36:53:350 1044 1f0 Service event 3 of type 1 removed from event system
    2010-04-14 06:36:53:366 1044 1f0 EEHndlr CSubExpressionHandler::Release: refcount is 0
    2010-04-14 06:36:53:366 1044 1f0 EEHndlr CEEMsiHandler::Release: refcount is 1
    2010-04-14 06:36:53:366 1044 1f0 EEHndlr CEEMsiHandler::Release: refcount is 0
    2010-04-14 06:36:53:366 1044 1f0 Handler CUHHandlerBase::Release: refcount is 0
    2010-04-14 06:36:53:366 1044 1f0 Service destination 2 removes event subscription 8 and internalrouting 0
    2010-04-14 06:36:53:366 1044 1f0 Service destination 2 removes event subscription 9 and internalrouting 0
    2010-04-14 06:36:53:366 1044 1f0 Report Submitting work item thread request.
    2010-04-14 06:36:53:366 1044 1f0 Service new event 19 of type 2 added to event system
    2010-04-14 06:36:53:366 1044 1f0 Report Asynchronously flushingCEventQueue@01C14E88.
    2010-04-14 06:36:53:366 1044 1f0 Report Asynchronously flushingCEventQueue@01C14E88.
    2010-04-14 06:36:53:366 1044 1f0 Report Dispatching events inCEventDispatcher@01C14370.
    2010-04-14 06:36:53:366 1044 1f0 Report CLocalEventLogWriter: Handling 2 events.
    2010-04-14 06:36:53:366 1044 1f0 Report CLocalEventLogWriter finishing event handling. (00000000)
    2010-04-14 06:36:53:366 1044 1f0 Report WARNING: Got attempt to log unexpected event ID 241 to the NT event log.
    2010-04-14 06:36:53:366 1044 1f0 Report WARNING: Got attempt to log unexpected event ID 254 to the NT event log.
    2010-04-14 06:36:53:366 1044 1f0 Report Filtering 2 events inCEventFilter@01C14F38.
    2010-04-14 06:36:53:366 1044 1f0 Report Event failed sampling filter.
    2010-04-14 06:36:53:366 1044 1f0 Report Event failed sampling filter.
    2010-04-14 06:36:53:366 1044 1f0 Report Filtered down to 0 events.
    2010-04-14 06:36:53:366 1044 1f0 Report Filtering 0 events inCEventFilter@01C14F0C.
    2010-04-14 06:36:53:366 1044 1f0 Report Filtered down to 0 events.
    2010-04-14 06:36:53:366 1044 1f0 Report Done with asynchronous flush.
    2010-04-14 06:36:53:366 1044 1f0 Service event 20 of type 1 removed from event system
    2010-04-14 06:36:53:366 1044 1f0 Service event 19 of type 2 removed from event system
    2010-04-14 06:36:53:366 1044 1f0 DtaStor Timer queue timer was deleted
    2010-04-14 06:36:53:459 1044 1f0 Service *********
    2010-04-14 06:36:53:459 1044 1f0 Service **  END  **  Service: Service exit [Exit code = 0x240001]
    2010-04-14 06:36:53:459 1044 1f0 Service *************
    2010-04-14 06:38:02:437 1040 1e4 Misc ===========  Logging initialized (build: 7.4.7600.226, tz: -0700)  ===========
    2010-04-14 06:38:02:906 1040 1e4 Misc   = Process: C:\WINDOWS\System32\svchost.exe
    2010-04-14 06:38:02:906 1040 1e4 Misc   = Module: C:\WINDOWS\system32\wuaueng.dll
    2010-04-14 06:38:02:437 1040 1e4 Service *************
    2010-04-14 06:38:02:953 1040 1e4 Service ** START **  Service: Service startup
    2010-04-14 06:38:02:953 1040 1e4 Service *********
    2010-04-14 06:38:03:046 1040 1e4 Agent   * WU client version 7.4.7600.226
    2010-04-14 06:38:03:046 1040 1e4 Agent   * Base directory: C:\WINDOWS\SoftwareDistribution
    2010-04-14 06:38:03:046 1040 1e4 Agent   * Access type: No proxy
    2010-04-14 06:38:03:109 1040 1e4 Agent   * Network state: Connected
    2010-04-14 06:38:54:624 1040 1e4 Agent ***********  Agent: Initializing Windows Update Agent  ***********
    2010-04-14 06:38:54:704 1040 1e4 Agent ***********  Agent: Initializing global settings cache  ***********
    2010-04-14 06:38:54:704 1040 1e4 Agent   * WSUS server:http://wsus01
    2010-04-14 06:38:54:704 1040 1e4 Agent   * WSUS status server:http://wsus01
    2010-04-14 06:38:54:704 1040 1e4 Agent   * Target group: (Unassigned Computers)
    2010-04-14 06:38:54:704 1040 1e4 Agent   * Windows Update access disabled: No
    2010-04-14 06:38:54:990 1040 1e4 DnldMgr Download manager restoring 0 downloads
    2010-04-14 06:39:05:825 1040 1e4 AU ###########  AU: Initializing Automatic Updates  ###########
    2010-04-14 06:39:06:350 1040 1e4 AU AU setting next sqm report timeout to 2010-04-14 13:39:06
    2010-04-14 06:39:06:652 1040 1e4 AU   # WSUS server:http://wsus01
    2010-04-14 06:39:06:668 1040 1e4 AU   # Detection frequency: 22
    2010-04-14 06:39:06:668 1040 1e4 AU   # Approval type: Scheduled (Policy)
    2010-04-14 06:39:06:668 1040 1e4 AU   # Scheduled install day/time: Every day at 3:00
    2010-04-14 06:39:06:668 1040 1e4 AU   # Auto-install minor updates: Yes (Policy)
    2010-04-14 06:39:06:668 1040 1e4 AU   # Will interact with non-admins (Non-admins are elevated (Policy))
    2010-04-14 06:39:07:541 1040 1e4 AU Initializing featured updates
    2010-04-14 06:39:07:573 1040 1e4 AU Found 0 cached featured updates
    2010-04-14 06:39:07:764 1040 1e4 AU AU finished delayed initialization
    2010-04-14 06:39:14:866 1040 1e4 Report ***********  Report: Initializing static reporting data  ***********
    2010-04-14 06:39:14:866 1040 1e4 Report   * OS Version = 5.1.2600.3.0.65792
    2010-04-14 06:39:14:929 1040 1e4 Report   * Computer Brand = Dell Computer Corporation
    2010-04-14 06:39:14:929 1040 1e4 Report   * Computer Model = Dimension 2400              
    2010-04-14 06:39:15:136 1040 1e4 Report   * Bios Revision = A05
    2010-04-14 06:39:15:136 1040 1e4 Report   * Bios Name = Phoenix ROM BIOS PLUS Version 1.10 A05
    2010-04-14 06:39:15:199 1040 1e4 Report   * Bios Release Date = 2003-12-02T00:00:00
    2010-04-14 06:39:15:199 1040 1e4 Report   * Locale ID = 1033
    2010-04-14 07:08:19:650 1040 1e4 AU Forced install timer expired for scheduled install
    2010-04-14 07:08:19:697 1040 1e4 AU UpdateDownloadProperties: 0 download(s) are still in progress.
    2010-04-14 07:08:19:697 1040 1e4 AU Setting AU scheduled install time to 2010-04-15 10:00:00
    2010-04-14 08:34:26:942 1040 1e4 AU AU received policy change subscription event
    2010-04-14 10:25:36:023 1040 1e4 AU AU received policy change subscription event
    2010-04-14 11:10:10:013 1040 1e4 AU #############
    2010-04-14 11:10:10:013 1040 1e4 AU ## START ##  AU: Search for updates
    2010-04-14 11:10:10:028 1040 1e4 AU #########
    2010-04-14 11:10:10:044 1040 1e4 AU <<## SUBMITTED ## AU: Search for updates [CallId = {2B72F721-395A-414B-A26E-DE5B982BE399}]
    2010-04-14 11:10:10:044 1040 1344 Agent *************
    2010-04-14 11:10:10:044 1040 1344 Agent ** START **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2010-04-14 11:10:10:044 1040 1344 Agent *********
    2010-04-14 11:10:10:044 1040 1344 Agent   * Online = Yes; Ignore download priority = No
    2010-04-14 11:10:10:044 1040 1344 Agent   * Criteria = "IsHidden=0 and IsInstalled=0 and DeploymentAction='Installation' and IsAssigned=1 or IsHidden=0 and IsPresent=1 and DeploymentAction='Uninstallation' and IsAssigned=1 or IsHidden=0 and IsInstalled=1 and DeploymentAction='Installation' and IsAssigned=1 and RebootRequired=1 or IsHidden=0 and IsInstalled=0 and DeploymentAction='Uninstallation' and IsAssigned=1 and RebootRequired=1"
    2010-04-14 11:10:10:044 1040 1344 Agent   * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2010-04-14 11:10:10:044 1040 1344 Agent   * Search Scope = {Machine}
    2010-04-14 11:10:11:466 1040 1344 Misc Validating signature for C:\WINDOWS\SoftwareDistribution\SelfUpdate\Default\wuident.cab:
    2010-04-14 11:10:11:653 1040 1344 Misc  Microsoft signed: Yes
    2010-04-14 11:10:11:825 1040 1344 Misc Validating signature for C:\WINDOWS\SoftwareDistribution\SelfUpdate\Default\wuident.cab:
    2010-04-14 11:10:11:841 1040 1344 Misc  Microsoft signed: Yes
    2010-04-14 11:10:11:997 1040 1344 Misc Validating signature for C:\WINDOWS\SoftwareDistribution\SelfUpdate\Default\wsus3setup.cab:
    2010-04-14 11:10:12:013 1040 1344 Misc  Microsoft signed: Yes
    2010-04-14 11:10:12:028 1040 1344 Setup ***********  Setup: Checking whether self-update is required  ***********
    2010-04-14 11:10:12:028 1040 1344 Setup   * Inf file: C:\WINDOWS\SoftwareDistribution\SelfUpdate\Default\wsus3setup.inf
    2010-04-14 11:10:12:075 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\cdm.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:185 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wuapi.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:247 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wuapi.dll.mui: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:247 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wuauclt.exe: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:372 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wuaucpl.cpl: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:403 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wuaucpl.cpl.mui: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:403 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wuaueng.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:419 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wuaueng.dll.mui: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:513 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wucltui.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:528 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wucltui.dll.mui: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:528 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wups.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:528 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wups2.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:591 1040 1344 Setup Update NOT required for C:\WINDOWS\system32\wuweb.dll: target version = 7.4.7600.226, required version = 7.4.7600.226
    2010-04-14 11:10:12:606 1040 1344 Setup   * IsUpdateRequired = No
    2010-04-14 11:10:19:466 1040 1344 PT +++++++++++  PT: Synchronizing server updates  +++++++++++
    2010-04-14 11:10:19:497 1040 1344 PT   + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL =http://wsus01/ClientWebService/client.asmx
    2010-04-14 11:10:22:685 1040 1344 PT WARNING: Cached cookie has expired or new PID is available
    2010-04-14 11:10:22:685 1040 1344 PT Initializing simple targeting cookie, clientId = 8fba4725-278a-4588-b0cb-713b711911d5, target group = , DNS name = client100.domain.com
    2010-04-14 11:10:22:685 1040 1344 PT   Server URL =http://wsus01/SimpleAuthWebService/SimpleAuth.asmx
    2010-04-14 11:10:23:044 1040 1344 Agent WARNING: Failed to evaluate Installed rule, updateId = {BFE5B177-A086-47A0-B102-097E4FA1F807}.102, hr = 8024E001
    2010-04-14 11:20:08:158 1040 1344 PT +++++++++++  PT: Synchronizing extended update info  +++++++++++
    2010-04-14 11:20:08:783 1040 1344 PT   + ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}, Server URL =http://wsus01/ClientWebService/client.asmx
    2010-04-14 12:16:30:246 1040 1e4 AU AU received policy change subscription event
    2010-04-14 13:57:17:634 1040 1e4 AU AU received policy change subscription event
    2010-04-14 14:43:29:227 1040 1344 Agent   * WARNING: Failed to filter search results, error = 0x8024000B
    2010-04-14 14:43:29:274 1040 1e4 AU ###########  AU: Uninitializing Automatic Updates  ###########
    2010-04-14 14:43:29:290 1040 1344 Agent *********
    2010-04-14 14:43:29:290 1040 1344 Agent **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates]
    2010-04-14 14:43:29:290 1040 1344 Agent *************
    2010-04-14 14:43:31:977 1040 1e4 Service *********
    2010-04-14 14:43:31:977 1040 1e4 Service **  END  **  Service: Service exit [Exit code = 0x240001]
    2010-04-14 14:43:31:977 1040 1e4 Service *************

  • Query taking high  CPU usage

    Hi,
    I have a Oracle 9.2 DB with 2 cpu's,when i took a statspack report i found that CPU Time is very hight i,e more that 81%....
    one of the query is taking near about 51% CPU Usage...
    i.e
    SELECT /*+ INDEX (OM_COURSE_FEE OCF_CFC_CODE)  */DISTINCT CF_COURSE_CODE   FROM OM_COURSE_FEE,OT_STUDENT_FEE_COL_HEAD,OT_STUDENT_FEE_COL_DETL  WHERE SFCH_SYS_ID = SFCD_SFCH_SYS_ID  AND
    SFCD_FEE_TYPE_CODE = CF_TYPE_CODE  AND CF_COURSE_CODE IN ( 'PE1','PE2','CCT','CPT'  ) AND SFCH_TXN_CODE = :b1  AND SFCD_SUBSCRBE_JOURNAL_YN IN ( 'T','R','1','C'  ) AND SFCH_APPR_UID IS NOT NULL  
    AND SFCH_APPR_DT IS NOT NULL   AND SFCH_NO = :b2  AND NOT EXISTS  (SELECT 'X'   FROM OM_STUDENT_HEAD  WHERE STUD_SRN = SFCH_STUD_SRN_TEMP_NO  AND NVL(STUD_CLO_STATUS,0) != 1  AND
    NVL(STUD_REG_STATUS,0) != 23  AND STUD_COURSE_CODE != 'CCT'  AND CF_COURSE_CODE= STUD_COURSE_CODE )  ORDER BY 1 DESCExplain Plan for......
    SQL> select * from table(dbms_xplan.display());
    PLAN_TABLE_OUTPUT
    | Id  | Operation                                  |  Name
       | Rows  | Bytes | Cost  | Pstart| Pstop |
    |   0 | SELECT STATEMENT                           |
    PLAN_TABLE_OUTPUT
       |     1 |    69 |    45 |       |       |
    |   1 |  SORT UNIQUE                               |
       |     1 |    69 |    27 |       |       |
    |   2 |   TABLE ACCESS BY GLOBAL INDEX ROWID       | OT_STUDENT_FEE_COL_DETL
       |     1 |    12 |     2 | ROWID | ROW L |
    |   3 |    NESTED LOOPS                            |
       |     1 |    69 |     9 |       |       |
    PLAN_TABLE_OUTPUT
    |   4 |     NESTED LOOPS                           |
       |     1 |    57 |     7 |       |       |
    |   5 |      TABLE ACCESS BY GLOBAL INDEX ROWID    | OT_STUDENT_FEE_COL_HEAD
       |     1 |    48 |     5 | ROWID | ROW L |
    |   6 |       INDEX SKIP SCAN                      | OT_STUDENT_FEE_COL_HEAD_UK0
    1  |     1 |       |     4 |       |       |
    |   7 |      INLIST ITERATOR                       |
       |       |       |       |       |       |
    PLAN_TABLE_OUTPUT
    |   8 |       TABLE ACCESS BY INDEX ROWID          | OM_COURSE_FEE
       |     1 |     9 |     2 |       |       |
    |   9 |        INDEX RANGE SCAN                    | OCF_CFC_CODE
       |     1 |       |     1 |       |       |
    |  10 |         FILTER                             |
       |       |       |       |       |       |
    |  11 |          TABLE ACCESS BY GLOBAL INDEX ROWID| OM_STUDENT_HEAD
    PLAN_TABLE_OUTPUT
       |     1 |    21 |     4 | ROWID | ROW L |
    |  12 |           INDEX RANGE SCAN                 | IDM_STUD_SRN_COURSE
       |     1 |       |     3 |       |       |
    |  13 |     INDEX RANGE SCAN                       | IDM_SFCD_FEE_TYPE_CODE
       | 34600 |       |     1 |       |       |
    PLAN_TABLE_OUTPUT
    Note: cpu costing is off, PLAN_TABLE' is old version
    21 rows selected.
    SQL>Statspack report
    DB Name         DB Id    Instance     Inst Num Release     Cluster Host
    ai          1372079993 ai11              1 9.2.0.6.0   YES     ai1
                  Snap Id     Snap Time      Sessions Curs/Sess Comment
    Begin Snap:       175 12-Dec-08 13:21:33  #######        .0
      End Snap:       176 12-Dec-08 13:56:09  #######        .0
       Elapsed:               34.60 (mins)
    Cache Sizes (end)
    ~~~~~~~~~~~~~~~~~
                   Buffer Cache:     3,264M      Std Block Size:          8K
               Shared Pool Size:       608M          Log Buffer:        977K
    Load Profile
    ~~~~~~~~~~~~                            Per Second       Per Transaction
                      Redo size:              5,727.62             21,658.54
                  Logical reads:             16,484.89             62,336.32
                  Block changes:                 32.49                122.88
                 Physical reads:                200.46                758.03
                Physical writes:                  5.08                 19.23
                     User calls:                 97.43                368.44
                         Parses:                 11.66                 44.11
                    Hard parses:                  0.39                  1.48
                          Sorts:                  3.22                 12.19
                         Logons:                  0.02                  0.06
                       Executes:                 36.70                138.77
                   Transactions:                  0.26
      % Blocks changed per Read:    0.20    Recursive Call %:     28.65
    Rollback per transaction %:   20.95       Rows per Sort:    131.16
    Instance Efficiency Percentages (Target 100%)
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
                Buffer Nowait %:  100.00       Redo NoWait %:    100.00
                Buffer  Hit   %:   98.79    In-memory Sort %:     99.99
                Library Hit   %:   98.92        Soft Parse %:     96.65
             Execute to Parse %:   68.21         Latch Hit %:     99.98
    Parse CPU to Parse Elapsd %:   60.50     % Non-Parse CPU:     99.48
    Shared Pool Statistics        Begin   End
                 Memory Usage %:   90.06   89.79
        % SQL with executions>1:   72.46   72.46
      % Memory for SQL w/exec>1:   69.42   69.51
    Top 5 Timed Events
    ~~~~~~~~~~~~~~~~~~                                                     % Total
    Event                                               Waits    Time (s) Ela Time
    CPU time                                                        3,337    81.43
    db file sequential read                            60,550         300     7.32
    global cache cr request                           130,852         177     4.33
    db file scattered read                             72,915         101     2.46
    db file parallel read                               3,384          75     1.84
    Cluster Statistics for DB: ai  Instance: ai11  Snaps: 175 -176
    Global Cache Service - Workload Characteristics
    Ave global cache get time (ms):                            1.3
    Ave global cache convert time (ms):                        2.1
    Ave build time for CR block (ms):                          0.1
    Ave flush time for CR block (ms):                          0.3
    Ave send time for CR block (ms):                           0.3
    Ave time to process CR block request (ms):                 0.7
    Ave receive time for CR block (ms):                        4.9
    Ave pin time for current block (ms):                       0.0
    Ave flush time for current block (ms):                     0.0
    Ave send time for current block (ms):                      0.3
    Ave time to process current block request (ms):            0.3
    Ave receive time for current block (ms):                   2.8
    Global cache hit ratio:                                    1.5
    Ratio of current block defers:                             0.0
    % of messages sent for buffer gets:                        1.4
    % of remote buffer gets:                                   0.1
    Ratio of I/O for coherence:                                1.1
    Ratio of local vs remote work:                             9.7
    Ratio of fusion vs physical writes:                        0.1
    Global Enqueue Service Statistics
    Ave global lock get time (ms):                             0.8
    Ave global lock convert time (ms):                         0.0
    Ratio of global lock gets vs global lock releases:         1.1
    GCS and GES Messaging statistics
    Ave message sent queue time (ms):                          0.4
    Ave message sent queue time on ksxp (ms):                  2.7
    Ave message received queue time (ms):                      0.2
    Ave GCS message process time (ms):                         0.1
    Ave GES message process time (ms):                         0.1
    % of direct sent messages:                                19.4
    % of indirect sent messages:                              43.5
    % of flow controlled messages:                            37.1
    GES Statistics for DB: ai  Instance: ai11  Snaps: 175 -176
    Statistic                                    Total   per Second    per Trans
    dynamically allocated gcs resourc                0          0.0          0.0
    dynamically allocated gcs shadows                0          0.0          0.0
    flow control messages received                   0          0.0          0.0
    flow control messages sent                       0          0.0          0.0
    gcs ast xid                                      0          0.0          0.0
    gcs blocked converts                         1,231          0.6          2.2
    gcs blocked cr converts                      2,432          1.2          4.4
    gcs compatible basts                             0          0.0          0.0
    gcs compatible cr basts (global)               658          0.3          1.2
    gcs compatible cr basts (local)             57,822         27.9        105.3
    gcs cr basts to PIs                              0          0.0          0.0
    gcs cr serve without current lock                0          0.0          0.0
    gcs error msgs                                   0          0.0          0.0
    gcs flush pi msgs                              821          0.4          1.5
    gcs forward cr to pinged instance                0          0.0          0.0
    gcs immediate (compatible) conver              448          0.2          0.8
    gcs immediate (null) converts                1,114          0.5          2.0
    gcs immediate cr (compatible) con           42,094         20.3         76.7
    gcs immediate cr (null) converts           396,284        190.9        721.8
    gcs msgs process time(ms)                   42,220         20.3         76.9
    gcs msgs received                          545,133        262.6        993.0
    gcs out-of-order msgs                            5          0.0          0.0
    gcs pings refused                                1          0.0          0.0
    gcs queued converts                              0          0.0          0.0
    gcs recovery claim msgs                          0          0.0          0.0
    gcs refuse xid                                   0          0.0          0.0
    gcs retry convert request                        0          0.0          0.0
    gcs side channel msgs actual                 2,397          1.2          4.4
    gcs side channel msgs logical              232,024        111.8        422.6
    gcs write notification msgs                     15          0.0          0.0
    gcs write request msgs                         278          0.1          0.5
    gcs writes refused                               1          0.0          0.0
    ges msgs process time(ms)                    4,873          2.3          8.9
    ges msgs received                           39,769         19.2         72.4
    global posts dropped                             0          0.0          0.0
    global posts queue time                          0          0.0          0.0
    global posts queued                              0          0.0          0.0
    global posts requested                           0          0.0          0.0
    global posts sent                                0          0.0          0.0
    implicit batch messages received            39,098         18.8         71.2
    implicit batch messages sent                33,386         16.1         60.8
    lmd msg send time(ms)                          635          0.3          1.2
    lms(s) msg send time(ms)                         2          0.0          0.0
    messages flow controlled                   196,546         94.7        358.0
    messages received actual                   182,783         88.0        332.9
    messages received logical                  584,848        281.7      1,065.3
    messages sent directly                     102,657         49.4        187.0
    messages sent indirectly                   230,329        110.9        419.5
    msgs causing lmd to send msgs                9,169          4.4         16.7
    msgs causing lms(s) to send msgs             3,347          1.6          6.1
    msgs received queue time (ms)              142,759         68.8        260.0
    msgs received queued                       584,818        281.7      1,065.2
    msgs sent queue time (ms)                   99,300         47.8        180.9
    msgs sent queue time on ksxp (ms)          608,239        293.0      1,107.9
    msgs sent queued                           230,391        111.0        419.7
    msgs sent queued on ksxp                   229,013        110.3        417.1
    GES Statistics for DB: ai  Instance: ai11  Snaps: 175 -176
    Statistic                                    Total   per Second    per Trans
    process batch messages received             65,059         31.3        118.5
    process batch messages sent                 50,959         24.5         92.8
    Wait Events for DB: ai  Instance: ai11  Snaps: 175 -176
    -> s  - second
    -> cs - centisecond -     100th of a second
    -> ms - millisecond -    1000th of a second
    -> us - microsecond - 1000000th of a second
    -> ordered by wait time desc, waits desc (idle events last)
                                                                       Avg
                                                         Total Wait   wait    Waits
    Event                               Waits   Timeouts   Time (s)   (ms)     /txn
    db file sequential read            60,550          0        300      5    110.3
    global cache cr request           130,852        106        177      1    238.3
    db file scattered read             72,915          0        101      1    132.8
    db file parallel read               3,384          0         75     22      6.2
    latch free                          7,253      1,587         52      7     13.2
    enqueue                            44,947          0         16      0     81.9
    log file parallel write             2,140          0          6      3      3.9
    db file parallel write                341          0          5     14      0.6
    global cache open x                 1,134          3          4      4      2.1
    CGS wait for IPC msg              166,993    164,390          4      0    304.2
    library cache lock                  3,169          0          3      1      5.8
    log file sync                         494          0          3      5      0.9
    row cache lock                        702          0          3      4      1.3
    DFS lock handle                     6,900          0          2      0     12.6
    control file parallel write           689          0          2      3      1.3
    control file sequential read        2,785          0          2      1      5.1
    wait for master scn                   687          0          2      2      1.3
    global cache null to x                699          0          2      2      1.3
    global cache s to x                   778          5          1      2      1.4
    direct path write                     148          0          0      3      0.3
    SQL*Net more data to client         3,621          0          0      0      6.6
    global cache open s                   149          0          0      2      0.3
    library cache pin                      78          0          0      2      0.1
    ksxr poll remote instances          3,536      2,422          0      0      6.4
    LGWR wait for redo copy                12          6          0      9      0.0
    buffer busy waits                      23          0          0      5      0.0
    direct path read                        9          0          0     10      0.0
    buffer busy global CR                   5          0          0     17      0.0
    SQL*Net break/reset to clien          172          0          0      0      0.3
    global cache quiesce wait               4          1          0      7      0.0
    KJC: Wait for msg sends to c           86          0          0      0      0.2
    BFILE get length                       67          0          0      0      0.1
    global cache null to s                  9          0          0      1      0.0
    BFILE open                              6          0          0      0      0.0
    BFILE read                             60          0          0      0      0.1
    BFILE internal seek                    60          0          0      0      0.1
    BFILE closure                           6          0          0      0      0.0
    cr request retry                        4          4          0      0      0.0
    SQL*Net message from client       201,907          0    180,583    894    367.8
    gcs remote message                171,236     43,749      3,975     23    311.9
    ges remote message                 79,324     40,722      2,017     25    144.5
    SQL*Net more data from clien          447          0          9     21      0.8
    SQL*Net message to client         201,901          0          0      0    367.8
    Background Wait Events for DB: ai  Instance: ai11  Snaps: 175 -176
    -> ordered by wait time desc, waits desc (idle events last)
                                                                       Avg
                                                         Total Wait   wait    Waits
    Event                               Waits   Timeouts   Time (s)   (ms)     /txn
    enqueue                            44,666          0         16      0     81.4
    latch free                          4,895        108          6      1      8.9
    log file parallel write             2,140          0          6      3      3.9
    db file parallel write                341          0          5     14      0.6
    CGS wait for IPC msg              166,969    164,366          4      0    304.1
    DFS lock handle                     6,900          0          2      0     12.6
    control file parallel write           689          0          2      3      1.3
    control file sequential read        2,733          0          2      1      5.0
    wait for master scn                   687          0          2      2      1.3
    ksxr poll remote instances          3,528      2,419          0      0      6.4
    LGWR wait for redo copy                12          6          0      9      0.0
    db file sequential read                 7          0          0      9      0.0
    global cache null to x                 26          0          0      2      0.0
    global cache open x                    16          0          0      1      0.0
    global cache cr request                 1          0          0      0      0.0
    rdbms ipc message                  28,636     20,600     16,937    591     52.2
    gcs remote message                171,254     43,746      3,974     23    311.9
    pmon timer                            708        686      2,022   2856      1.3
    ges remote message                 79,305     40,719      2,017     25    144.5
    smon timer                            125          0      1,972  15776      0.2
    SQL ordered by Gets for DB: ai  Instance: ai11  Snaps: 175 -176
    -> End Buffer Gets Threshold:     10000
    -> Note that resources reported for PL/SQL includes the resources used by
       all SQL statements called within the PL/SQL code.  As individual SQL
       statements are also reported, it is possible and valid for the summed
       total % to exceed 100
                                                         CPU      Elapsd
      Buffer Gets    Executions  Gets per Exec  %Total Time (s)  Time (s) Hash Value
         17,503,305           84      208,372.7   51.1   676.25   1218.80   17574787
    SELECT /*+ INDEX (OM_COURSE_FEE OCF_CFC_CODE)  */DISTINCT CF_COU
    RSE_CODE   FROM OM_COURSE_FEE,OT_STUDENT_FEE_COL_HEAD,OT_STUDENT
    FEECOL_DETL  WHERE SFCH_SYS_ID = SFCD_SFCH_SYS_ID  AND SFCD_FE
    E_TYPE_CODE = CF_TYPE_CODE  AND CF_COURSE_CODE IN ( 'PE1','PE2',
    'CCT','CPT'  ) AND SFCH_TXN_CODE = :b1  AND SFCD_SUBSCRBE_JOURNA

    user00726 wrote:
    somw of the changes that have been done....
    cai11_lmd0_15771.trc.
    Thu Oct 2 13:35:48 2008
    CKPT: Begin resize of buffer pool 3 (DEFAULT for block size 8192)
    CKPT: Current size = 2512 MB, Target size = 3072 MB
    CKPT: Resize completed for buffer pool DEFAULT for blocksize 8192
    Thu Oct 2 13:35:50 2008
    ALTER SYSTEM SET db_cache_size='3072M' SCOPE=BOTH SID='icai11';
    Thu Oct 2 14:04:34 2008
    ALTER SYSTEM SET sga_max_size='5244772679680' SCOPE=SPFILE SID='*';
    ALTER SYSTEM SET sga_max_size='5244772679680' SCOPE=SPFILE SID='*';
    Thu Oct 2 15:24:14 2008
    CKPT: Begin resize of buffer pool 3 (DEFAULT for block size 8192)
    CKPT: Current size = 3072 MB, Target size = 2512 MB
    CKPT: Resize completed for buffer pool DEFAULT for blocksize 8192
    Thu Oct 2 15:24:20 2008
    ALTER SYSTEM SET db_cache_size='2512M' SCOPE=BOTH SID='icai11';
    Thu Oct 2 15:32:33 2008
    CKPT: Begin resize of buffer pool 3 (DEFAULT for block size 8192)
    CKPT: Current size = 2512 MB, Target size = 3072 MB
    CKPT: Resize completed for buffer pool DEFAULT for blocksize 8192
    Thu Oct 2 15:32:34 2008
    ALTER SYSTEM SET db_cache_size='3072M' SCOPE=BOTH SID='icai11';
    Thu Oct 2 15:36:46 2008
    ALTER SYSTEM SET shared_pool_size='640M' SCOPE=BOTH SID='icai11';
    Thu Oct 2 16:33:52 2008
    CKPT: Begin resize of buffer pool 3 (DEFAULT for block size 8192)
    CKPT: Current size = 3072 MB, Target size = 2512 MB
    CKPT: Resize completed for buffer pool DEFAULT for blocksize 8192
    Thu Oct 2 16:33:56 2008
    ALTER SYSTEM SET db_cache_size='2512M' SCOPE=BOTH SID='icai11';
    Thu Oct 2 16:39:30 2008
    ALTER SYSTEM SET pga_aggregate_target='750M' SCOPE=BOTH SID='icai11';Just to make certain that I am not missing anything, if the above you set (all scaled to GB just for the sake of comparison):
    sga_max_size=4885GB
    db_cache_size=3GB
    shared_pool_size=0.625GB
    pga_aggregate_target=0.733GB
    The SQL statement is forcing the use of a specific index, is this the best index?:
    SELECT /*+ INDEX (OM_COURSE_FEE OCF_CFC_CODE) */DISTINCT CF_COURSE_CODE FROM OM_COURSE_FEE,OT_STUDENT_FEE_COL_HEAD,OT_STUDENT_FEE_COL_DETL WHERE SFCH_SYS_ID = SFCD_SFCH_SYS_ID AND
    SFCD_FEE_TYPE_CODE = CF_TYPE_CODE AND CF_COURSE_CODE IN ( 'PE1','PE2','CCT','CPT' ) AND SFCH_TXN_CODE = :b1 AND SFCD_SUBSCRBE_JOURNAL_YN IN ( 'T','R','1','C' ) AND SFCH_APPR_UID IS NOT NULL
    AND SFCH_APPR_DT IS NOT NULL AND SFCH_NO = :b2 AND NOT EXISTS (SELECT 'X' FROM OM_STUDENT_HEAD WHERE STUD_SRN = SFCH_STUD_SRN_TEMP_NO AND NVL(STUD_CLO_STATUS,0) != 1 AND
    NVL(STUD_REG_STATUS,0) != 23 AND STUD_COURSE_CODE != 'CCT' AND CF_COURSE_CODE= STUD_COURSE_CODE ) ORDER BY 1 DESC
    Unfortunately, explain plans, even with dbms_xplan.display, may not show the actual execution plan - this is more of a problem when the SQL statement includes bind variables (capturing a 10046 trace at level 8 or 12 will help). With the information provided, it looks like the problem is with the number of logical reads performed: 17,503,305 in 84 executions = 208,373 logical reads per execution. Something is causing the SQL statement to execute inefficiently, possibly a join problem between tables, possibly the forced use of an index.
    From one of my previous posts related to this same SQL statement:
    SELECT /*+ INDEX (OM_COURSE_FEE OCF_CFC_CODE)  */ DISTINCT
      CF_COURSE_CODE
    FROM
      OM_COURSE_FEE,
      OT_STUDENT_FEE_COL_HEAD,
      OT_STUDENT_FEE_COL_DETL
    WHERE
      SFCH_SYS_ID = SFCD_SFCH_SYS_ID
      AND SFCD_FEE_TYPE_CODE = CF_TYPE_CODE
      AND CF_COURSE_CODE IN ( 'PE1','PE2','CCT','CPT'  )
      AND SFCH_TXN_CODE = :b1
      AND SFCD_SUBSCRBE_JOURNAL_YN IN ( 'T','R','1','C'  )
      AND SFCH_APPR_UID IS NOT NULL
      AND SFCH_APPR_DT IS NOT NULL
      AND SFCH_NO = :b2
      AND NOT EXISTS (
        SELECT
          'X'
        FROM
          OM_STUDENT_HEAD
        WHERE
          STUD_SRN = SFCH_STUD_SRN_TEMP_NO
          AND NVL(STUD_CLO_STATUS,0) != 1
          AND NVL(STUD_REG_STATUS,0) != 23
          AND STUD_COURSE_CODE != 'CCT'
          AND CF_COURSE_CODE = STUD_COURSE_CODE)
    ORDER BY
      1 DESC
    | Id  | Operation                                  |  Name                     | Rows  | Bytes | Cost  | Pstart| Pstop |
    |   0 | SELECT STATEMENT                                                             1      69      34
    |   1 |  SORT UNIQUE                                                                 1      69      22
    |   2 |   TABLE ACCESS BY GLOBAL INDEX ROWID       | OT_STUDENT_FEE_COL_DETL   |     1 |    12 |     2 | ROWID | ROW L |
    |   3 |    NESTED LOOPS                                                              1      69       9
    |   4 |     NESTED LOOPS                                                             1      57       7
    |   5 |      TABLE ACCESS BY GLOBAL INDEX ROWID    | OT_STUDENT_FEE_COL_HEAD   |     1 |    48 |     5 | ROWID | ROW L |
    |   6 |       INDEX SKIP SCAN                       OT_STUDENT_FEE_COL_HEAD_UK0|     1 |     1 |     4 |
    |   7 |      INLIST ITERATOR                       |
    |   8 |       TABLE ACCESS BY INDEX ROWID          | OM_COURSE_FEE             |     1 |     9 |     2 |       |       |
    |   9 |        INDEX RANGE SCAN                    | OCF_CFC_CODE              |     1 |       |     1 |       |       |
    |  10 |         FILTER                            
    |  11 |          TABLE ACCESS BY GLOBAL INDEX ROWID| OM_STUDENT_HEAD           |     1 |    21 |     4 | ROWID | ROW L |
    |  12 |           INDEX RANGE SCAN                 | IDM_STUD_SRN_COURSE       |     1 |       |     3 |       |       |
    |  13 |     INDEX RANGE SCAN                       | IDM_SFCD_FEE_TYPE_CODE    | 34600 |       |     1 |       |       |It appears, based just on the SQL statement, that there is no direct relationship between OM_COURSE_FEE and OT_STUDENT_FEE_COL_HEAD, yet the plan above indicates that the two tables are being joined together, likely as a result of the index hint. There is the possibility of additional predicates being generated by Oracle which will make this possible without introducing a Cartesian join, but those predicates are not displayed with an explain plan (they will appear with a DBMS_XPLAN). I may not be remembering correctly, but if the optimizer goal is set to first rows, a Cartesian join might appear in a plan as a nested loops join - Jonathan will know for certain if that is the case.
    Have you investigated the above as a possible cause? If you know that there is a problem with this one SQL statement, a 10046 trace at level 8 or 12 is much more helpful than a Statspack report.
    Charles Hooper
    IT Manager/Oracle DBA
    K&M Machine-Fabricating, Inc.

  • 100% CPU Usage Overhead running EM DBConsole 11g on OEL-5.2

    After upgrading to OEL-5.2 and relinking all Oracle binaries, my old Oracle 11g installation, installed several months before on OEL-5.1, has been working well, including Enterprise Manager Database Console working nicely as always with respectful performance. Unfortunatelly, it lasted just several days.
    Yesterday I decided to uninstall the 11g completely and perform new clean installation (software and database) with the same configuration options and settings as before, including EM dbconsole, all configured using dbca. After completing the installation (EM was started automatically by dbca), oracle continued to suck 80-85% CPU time. In further few minutes CPU utilization raised up to 99% due to only one (always the same PID) client process - "oracleorcl (LOCAL=NO)". For first ten minutes I didn't care too much since I always enable Automatic Management in dbca. But after two hours, I started to worry. The process was still running, consuming sustained 99% of CPU power. No other system activity, no database activity, no disks activity at all!
    I was really puzzled since I installed and reinstalled the 11g at least 20 times on OEL-5.0 and 5.1, experimenting with ASM, raw devices, loopback devices and various combinations of installation options, but never experienced such a behaviour. It took me 3 minutes to log in to EM dbconsole as it was almost unusable performing too slow. After three hours CPU temperature was nearly 60 degrees celsius. I decided to shutdown EM and after that everything became quiet. Oracle was running normally. Started EM again, the problem was back again. Tracing enabled, it filled a 350 MB trace file in just 20 minutes. Reinstalling the software and database once again didn't help. Whenever EM is up, the CPU usage overhead of 99% persists.
    Here is a cca 23 minutes session summary report taken from EM dbconsole's Performance page. The trace file is too big to list it here, but it shows the same.
            Host CPU:  100%
    Active Sessions:  100%The details for the Selected 5 Minute Interval (the last 5 min interval) are shown as follow:
        TOP SESSIONS:  SYSMAN, Program: OMS
            Activity:  100%  
         TOP MODULES:  OEM.CacheModeWaitPool, Service: orcl
            Activity:  100%          
          TOP CLIENT:  Unnamed
            Activity:  99.1%
         TOP ACTIONS:  Unnamed (OEM.CacheModeWaitPool) (orcl)
            Activity:  100%
         TOP OBJECTS: SYSMAN.MGMT_JOB_EXEC_SUMMARY (Table)
            Activity:  100%
          TOP PL/SQL:  SYSMAN.MGMT_JOB_ENGINE.INSERT_EXECUTION
       PL/SQL Source:  SYSMAN.MGMT_JOB_ENGINE
         Line Number:  7135
            Activity:  100%
             TOP SQL:  SELECT EXECUTION_ID, STATUS, STATUS_DETAIL FROM MGMT_JOB_EXEC_SUMMARY
    WHERE JOB_ID = :B3 AND TARGET_LIST_INDEX = :B2 AND EXPECTED_START_TIME = :B1;
            Activity:  100%
                                  STATISTICS SUMMARY
                                cca 23 minutes session
                            with no other system activity
                                            Per 
                           Total      Execution         Per Row
    Executions           105,103                 1       10,510.30
    Elapsed Time (sec)  1,358.95              0.01        135.90
    CPU Time (sec)      1,070.42             0.01        107.04
    Buffer Gets       85,585,518 814.30 8,558,551.80
    Disk Reads                 2            <0.01          0.20
    Direct Writes              0              0.00          0.00
    Rows                      10            <0.01             1
    Fetches              105,103             1.00     10,510.30
                       ----------------------------------------Wow!!! Note: no disk, no database activity !
    Has anyone experienced this or similar behaviour after clean 11g installation on OEL-5.2? If not, anyone has a clue what the hell is going on?
    Thanks in advance.

    Hi Tommy,
    I didn't want to experiment further with already working OEL-5.2, oracle and dbconsole on this machine, specially not after googling the problem and finding out that I am not alone in this world. There are another two threads on OTN forums (Database General) showing the same problem even on 2GB machines:
    DBConsole easting a CPU
    11g stuck. 50-100% CPU after fresh install
    So, I took another, a smaller free machine I've got at home (1GB RAM, 2.2MHz Pentium4, three 80GB disks), on which I used to experiment with new releases of software (this is the machine on which I installed 11g for the first time when it was released on OEL-5.0, and I can recall that everything was OK with EM). This is what I did:
    1. I installed OEL-5.0 on the machine, adjusted linux and kernel parameters, and performed full 11g installation. Database and EM dbconsole worked nice with acceptable performance. Without activity in the database, %CPU = zero !!! The whole system was perfectly quiet.
    2. Since everything was OK, I shutdown EM and oracle, and performed the full upgrade to OEL-5.2. When the upgrade finished, restarted the system, relinked all oracle binaries, and started oracle and EM dbconsole. Both worked perfectly again, just as before the upgrade. I repeated restarting the database and dbconsole several times, always with the same result - it really rocks. Without database activity, %CPU = zero%.
    3. Using dbca, I dropped the database and created the new one with the same configuration options. Wow! I'm again in trouble. A half an hour after the creation of the database, %CPU raised up to 99%. That's it.
    The crucial question here is: what is that in OEL-5.2, not existing in the 5.0, that causes dbca/em scripts to be embarrassed at the time of EM agent configuration?
    Here are the outputs you required picked 30 minutes after starting the database and EM dbconsole (sustained 99% CPU utilization). Note that this is just a 1GB machine.
    Kernel command line: ro root=LABEL=/ elevator=deadline rhgb quiet
    [root@localhost ~]# cat /proc/meminfo
    MemTotal:      1034576 kB
    MemFree:         27356 kB
    Buffers:          8388 kB
    Cached:         609660 kB
    SwapCached:      18628 kB
    Active:         675376 kB
    Inactive:       287072 kB
    HighTotal:      130304 kB
    HighFree:          260 kB
    LowTotal:       904272 kB
    LowFree:         27096 kB
    SwapTotal:     3148700 kB
    SwapFree:      2940636 kB
    Dirty:              72 kB
    Writeback:           0 kB
    AnonPages:      328700 kB
    Mapped:         271316 kB
    Slab:            21136 kB
    PageTables:      14196 kB
    NFS_Unstable:        0 kB
    Bounce:              0 kB
    CommitLimit:   3665988 kB
    Committed_AS:  1187464 kB
    VmallocTotal:   114680 kB
    VmallocUsed:      5860 kB
    VmallocChunk:   108476 kB
    HugePages_Total:     0
    HugePages_Free:      0
    HugePages_Rsvd:      0
    Hugepagesize:     4096 kB
    [root@localhost ~]# cat /proc/slabinfo
    slabinfo - version: 2.1
    # name            <active_objs> <num_objs> <objsize> <objperslab> <pagesperslab> : tunables <limit> <batchcount> <sharedfactor> : slabdata <active_slabs> <num_slabs> <sharedavail>
    rpc_buffers            8      8   2048    2    1 : tunables   24   12    8 : slabdata      4      4      0
    rpc_tasks              8     15    256   15    1 : tunables  120   60    8 : slabdata      1      1      0
    rpc_inode_cache        6      7    512    7    1 : tunables   54   27    8 : slabdata      1      1      0
    ip_conntrack_expect    0      0     96   40    1 : tunables  120   60    8 : slabdata      0      0      0
    ip_conntrack          68     68    228   17    1 : tunables  120   60    8 : slabdata      4      4      0
    ip_fib_alias           7    113     32  113    1 : tunables  120   60    8 : slabdata      1      1      0
    ip_fib_hash            7    113     32  113    1 : tunables  120   60    8 : slabdata      1      1      0
    fib6_nodes            22    113     32  113    1 : tunables  120   60    8 : slabdata      1      1      0
    ip6_dst_cache         13     15    256   15    1 : tunables  120   60    8 : slabdata      1      1      0
    ndisc_cache            1     15    256   15    1 : tunables  120   60    8 : slabdata      1      1      0
    RAWv6                  4      5    768    5    1 : tunables   54   27    8 : slabdata      1      1      0
    UDPv6                  9     12    640    6    1 : tunables   54   27    8 : slabdata      2      2      0
    tw_sock_TCPv6          0      0    128   30    1 : tunables  120   60    8 : slabdata      0      0      0
    request_sock_TCPv6     0      0    128   30    1 : tunables  120   60    8 : slabdata      0      0      0
    TCPv6                  1      3   1280    3    1 : tunables   24   12    8 : slabdata      1      1      0
    jbd_1k                 0      0   1024    4    1 : tunables   54   27    8 : slabdata      0      0      0
    dm_mpath               0      0     28  127    1 : tunables  120   60    8 : slabdata      0      0      0
    dm_uevent              0      0   2460    3    2 : tunables   24   12    8 : slabdata      0      0      0
    dm_tio                 0      0     16  203    1 : tunables  120   60    8 : slabdata      0      0      0
    dm_io                  0      0     20  169    1 : tunables  120   60    8 : slabdata      0      0      0
    jbd_4k                 1      1   4096    1    1 : tunables   24   12    8 : slabdata      1      1      0
    scsi_cmd_cache        10     10    384   10    1 : tunables   54   27    8 : slabdata      1      1      0
    sgpool-128            36     36   2048    2    1 : tunables   24   12    8 : slabdata     18     18      0
    sgpool-64             33     36   1024    4    1 : tunables   54   27    8 : slabdata      9      9      0
    sgpool-32             34     40    512    8    1 : tunables   54   27    8 : slabdata      5      5      0
    sgpool-16             35     45    256   15    1 : tunables  120   60    8 : slabdata      3      3      0
    sgpool-8              60     60    128   30    1 : tunables  120   60    8 : slabdata      2      2      0
    scsi_io_context        0      0    104   37    1 : tunables  120   60    8 : slabdata      0      0      0
    ext3_inode_cache    4376   8216    492    8    1 : tunables   54   27    8 : slabdata   1027   1027      0
    ext3_xattr           165    234     48   78    1 : tunables  120   60    8 : slabdata      3      3      0
    journal_handle         8    169     20  169    1 : tunables  120   60    8 : slabdata      1      1      0
    journal_head         684   1008     52   72    1 : tunables  120   60    8 : slabdata     14     14      0
    revoke_table          18    254     12  254    1 : tunables  120   60    8 : slabdata      1      1      0
    revoke_record          0      0     16  203    1 : tunables  120   60    8 : slabdata      0      0      0
    uhci_urb_priv          0      0     28  127    1 : tunables  120   60    8 : slabdata      0      0      0
    UNIX                  56    112    512    7    1 : tunables   54   27    8 : slabdata     16     16      0
    flow_cache             0      0    128   30    1 : tunables  120   60    8 : slabdata      0      0      0
    cfq_ioc_pool           0      0     92   42    1 : tunables  120   60    8 : slabdata      0      0      0
    cfq_pool               0      0     96   40    1 : tunables  120   60    8 : slabdata      0      0      0
    crq_pool               0      0     44   84    1 : tunables  120   60    8 : slabdata      0      0      0
    deadline_drq         140    252     44   84    1 : tunables  120   60    8 : slabdata      3      3      0
    as_arq                 0      0     56   67    1 : tunables  120   60    8 : slabdata      0      0      0
    mqueue_inode_cache     1      6    640    6    1 : tunables   54   27    8 : slabdata      1      1      0
    isofs_inode_cache      0      0    368   10    1 : tunables   54   27    8 : slabdata      0      0      0
    hugetlbfs_inode_cache  1     11    340   11    1 : tunables   54   27    8 : slabdata      1      1      0
    ext2_inode_cache       0      0    476    8    1 : tunables   54   27    8 : slabdata      0      0      0
    ext2_xattr             0      0     48   78    1 : tunables  120   60    8 : slabdata      0      0      0
    dnotify_cache          2    169     20  169    1 : tunables  120   60    8 : slabdata      1      1      0
    dquot                  0      0    128   30    1 : tunables  120   60    8 : slabdata      0      0      0
    eventpoll_pwq          1    101     36  101    1 : tunables  120   60    8 : slabdata      1      1      0
    eventpoll_epi          1     30    128   30    1 : tunables  120   60    8 : slabdata      1      1      0
    inotify_event_cache    1    127     28  127    1 : tunables  120   60    8 : slabdata      1      1      0
    inotify_watch_cache   23     92     40   92    1 : tunables  120   60    8 : slabdata      1      1      0
    kioctx               135    135    256   15    1 : tunables  120   60    8 : slabdata      9      9      0
    kiocb                  0      0    128   30    1 : tunables  120   60    8 : slabdata      0      0      0
    fasync_cache           0      0     16  203    1 : tunables  120   60    8 : slabdata      0      0      0
    shmem_inode_cache    553    585    436    9    1 : tunables   54   27    8 : slabdata     65     65      0
    posix_timers_cache     0      0     88   44    1 : tunables  120   60    8 : slabdata      0      0      0
    uid_cache              5     59     64   59    1 : tunables  120   60    8 : slabdata      1      1      0
    ip_mrt_cache           0      0    128   30    1 : tunables  120   60    8 : slabdata      0      0      0
    tcp_bind_bucket       32    203     16  203    1 : tunables  120   60    8 : slabdata      1      1      0
    inet_peer_cache        1     59     64   59    1 : tunables  120   60    8 : slabdata      1      1      0
    secpath_cache          0      0     32  113    1 : tunables  120   60    8 : slabdata      0      0      0
    xfrm_dst_cache         0      0    384   10    1 : tunables   54   27    8 : slabdata      0      0      0
    ip_dst_cache           6     15    256   15    1 : tunables  120   60    8 : slabdata      1      1      0
    arp_cache              2     15    256   15    1 : tunables  120   60    8 : slabdata      1      1      0
    RAW                    2      7    512    7    1 : tunables   54   27    8 : slabdata      1      1      0
    UDP                    3      7    512    7    1 : tunables   54   27    8 : slabdata      1      1      0
    tw_sock_TCP            3     30    128   30    1 : tunables  120   60    8 : slabdata      1      1      0
    request_sock_TCP       4     30    128   30    1 : tunables  120   60    8 : slabdata      1      1      0
    TCP                   43     49   1152    7    2 : tunables   24   12    8 : slabdata      7      7      0
    blkdev_ioc             3    127     28  127    1 : tunables  120   60    8 : slabdata      1      1      0
    blkdev_queue          23     24    956    4    1 : tunables   54   27    8 : slabdata      6      6      0
    blkdev_requests      137    161    172   23    1 : tunables  120   60    8 : slabdata      7      7      0
    biovec-256             7      8   3072    2    2 : tunables   24   12    8 : slabdata      4      4      0
    biovec-128             7     10   1536    5    2 : tunables   24   12    8 : slabdata      2      2      0
    biovec-64              7     10    768    5    1 : tunables   54   27    8 : slabdata      2      2      0
    biovec-16              7     15    256   15    1 : tunables  120   60    8 : slabdata      1      1      0
    biovec-4               8     59     64   59    1 : tunables  120   60    8 : slabdata      1      1      0
    biovec-1             406    406     16  203    1 : tunables  120   60    8 : slabdata      2      2    300
    bio                  564    660    128   30    1 : tunables  120   60    8 : slabdata     21     22    204
    utrace_engine_cache    0      0     32  113    1 : tunables  120   60    8 : slabdata      0      0      0
    utrace_cache           0      0     32  113    1 : tunables  120   60    8 : slabdata      0      0      0
    sock_inode_cache     149    230    384   10    1 : tunables   54   27    8 : slabdata     23     23      0
    skbuff_fclone_cache   20     20    384   10    1 : tunables   54   27    8 : slabdata      2      2      0
    skbuff_head_cache     86    210    256   15    1 : tunables  120   60    8 : slabdata     14     14      0
    file_lock_cache       22     40     96   40    1 : tunables  120   60    8 : slabdata      1      1      0
    Acpi-Operand        1147   1196     40   92    1 : tunables  120   60    8 : slabdata     13     13      0
    Acpi-ParseExt          0      0     44   84    1 : tunables  120   60    8 : slabdata      0      0      0
    Acpi-Parse             0      0     28  127    1 : tunables  120   60    8 : slabdata      0      0      0
    Acpi-State             0      0     44   84    1 : tunables  120   60    8 : slabdata      0      0      0
    Acpi-Namespace       615    676     20  169    1 : tunables  120   60    8 : slabdata      4      4      0
    delayacct_cache      233    312     48   78    1 : tunables  120   60    8 : slabdata      4      4      0
    taskstats_cache       12     53     72   53    1 : tunables  120   60    8 : slabdata      1      1      0
    proc_inode_cache     622    693    356   11    1 : tunables   54   27    8 : slabdata     63     63      0
    sigqueue               8     27    144   27    1 : tunables  120   60    8 : slabdata      1      1      0
    radix_tree_node     6220   8134    276   14    1 : tunables   54   27    8 : slabdata    581    581      0
    bdev_cache            37     42    512    7    1 : tunables   54   27    8 : slabdata      6      6      0
    sysfs_dir_cache     4980   4992     48   78    1 : tunables  120   60    8 : slabdata     64     64      0
    mnt_cache             36     60    128   30    1 : tunables  120   60    8 : slabdata      2      2      0
    inode_cache         1113   1254    340   11    1 : tunables   54   27    8 : slabdata    114    114     81
    dentry_cache       11442  18560    136   29    1 : tunables  120   60    8 : slabdata    640    640    180
    filp                7607  10000    192   20    1 : tunables  120   60    8 : slabdata    500    500    120
    names_cache           19     19   4096    1    1 : tunables   24   12    8 : slabdata     19     19      0
    avc_node              14     72     52   72    1 : tunables  120   60    8 : slabdata      1      1      0
    selinux_inode_security 814   1170     48   78    1 : tunables  120   60    8 : slabdata     15     15      0
    key_jar               14     30    128   30    1 : tunables  120   60    8 : slabdata      1      1      0
    idr_layer_cache      170    203    136   29    1 : tunables  120   60    8 : slabdata      7      7      0
    buffer_head        38892  39024     52   72    1 : tunables  120   60    8 : slabdata    542    542      0
    mm_struct            108    135    448    9    1 : tunables   54   27    8 : slabdata     15     15      0
    vm_area_struct     11169  14904     84   46    1 : tunables  120   60    8 : slabdata    324    324    144
    fs_cache              82    177     64   59    1 : tunables  120   60    8 : slabdata      3      3      0
    files_cache          108    140    384   10    1 : tunables   54   27    8 : slabdata     14     14      0
    signal_cache         142    171    448    9    1 : tunables   54   27    8 : slabdata     19     19      0
    sighand_cache        127    135   1344    3    1 : tunables   24   12    8 : slabdata     45     45      0
    task_struct          184    246   1360    3    1 : tunables   24   12    8 : slabdata     82     82      0
    anon_vma            3313   5842     12  254    1 : tunables  120   60    8 : slabdata     23     23      0
    pgd                   84     84   4096    1    1 : tunables   24   12    8 : slabdata     84     84      0
    pid                  237    303     36  101    1 : tunables  120   60    8 : slabdata      3      3      0
    size-131072(DMA)       0      0 131072    1   32 : tunables    8    4    0 : slabdata      0      0      0
    size-131072            0      0 131072    1   32 : tunables    8    4    0 : slabdata      0      0      0
    size-65536(DMA)        0      0  65536    1   16 : tunables    8    4    0 : slabdata      0      0      0
    size-65536             2      2  65536    1   16 : tunables    8    4    0 : slabdata      2      2      0
    size-32768(DMA)        0      0  32768    1    8 : tunables    8    4    0 : slabdata      0      0      0
    size-32768             9      9  32768    1    8 : tunables    8    4    0 : slabdata      9      9      0
    size-16384(DMA)        0      0  16384    1    4 : tunables    8    4    0 : slabdata      0      0      0
    size-16384             6      6  16384    1    4 : tunables    8    4    0 : slabdata      6      6      0
    size-8192(DMA)         0      0   8192    1    2 : tunables    8    4    0 : slabdata      0      0      0
    size-8192              5      5   8192    1    2 : tunables    8    4    0 : slabdata      5      5      0
    size-4096(DMA)         0      0   4096    1    1 : tunables   24   12    8 : slabdata      0      0      0
    size-4096            205    205   4096    1    1 : tunables   24   12    8 : slabdata    205    205      0
    size-2048(DMA)         0      0   2048    2    1 : tunables   24   12    8 : slabdata      0      0      0
    size-2048            260    270   2048    2    1 : tunables   24   12    8 : slabdata    135    135      0
    size-1024(DMA)         0      0   1024    4    1 : tunables   54   27    8 : slabdata      0      0      0
    size-1024            204    204   1024    4    1 : tunables   54   27    8 : slabdata     51     51      0
    size-512(DMA)          0      0    512    8    1 : tunables   54   27    8 : slabdata      0      0      0
    size-512             367    464    512    8    1 : tunables   54   27    8 : slabdata     58     58      0
    size-256(DMA)          0      0    256   15    1 : tunables  120   60    8 : slabdata      0      0      0
    size-256             487    495    256   15    1 : tunables  120   60    8 : slabdata     33     33      0
    size-128(DMA)          0      0    128   30    1 : tunables  120   60    8 : slabdata      0      0      0
    size-128            2242   2490    128   30    1 : tunables  120   60    8 : slabdata     83     83      0
    size-64(DMA)           0      0     64   59    1 : tunables  120   60    8 : slabdata      0      0      0
    size-32(DMA)           0      0     32  113    1 : tunables  120   60    8 : slabdata      0      0      0
    size-64             1409   2950     64   59    1 : tunables  120   60    8 : slabdata     50     50      0
    size-32             3596   3842     32  113    1 : tunables  120   60    8 : slabdata     34     34      0
    kmem_cache           145    150    256   15    1 : tunables  120   60    8 : slabdata     10     10      0
    [root@localhost ~]# slabtop -d 5
    Active / Total Objects (% used)    : 97257 / 113249 (85.9%)
    Active / Total Slabs (% used)      : 4488 / 4488 (100.0%)
    Active / Total Caches (% used)     : 101 / 146 (69.2%)
    Active / Total Size (% used)       : 15076.34K / 17587.55K (85.7%)
    Minimum / Average / Maximum Object : 0.01K / 0.16K / 128.00K
      OBJS ACTIVE  USE OBJ SIZE  SLABS OBJ/SLAB CACHE SIZE NAME
    25776  25764  99%    0.05K    358       72      1432K buffer_head
    16146  15351  95%    0.08K    351       46      1404K vm_area_struct
    15138   7779  51%    0.13K    522       29      2088K dentry_cache
      9720   9106  93%    0.19K    486       20      1944K filp
      7714   7032  91%    0.27K    551       14      2204K radix_tree_node
      5070   5018  98%    0.05K     65       78       260K sysfs_dir_cache
      4826   4766  98%    0.01K     19      254        76K anon_vma
      4824   3406  70%    0.48K    603        8      2412K ext3_inode_cache
      3842   3691  96%    0.03K     34      113       136K size-32
      2190   2174  99%    0.12K     73       30       292K size-128
      1711   1364  79%    0.06K     29       59       116K size-64
      1210   1053  87%    0.33K    110       11       440K inode_cache
      1196   1147  95%    0.04K     13       92        52K Acpi-Operand
      1170    814  69%    0.05K     15       78        60K selinux_inode_security
       936    414  44%    0.05K     13       72        52K journal_head
       747    738  98%    0.43K     83        9       332K shmem_inode_cache
       693    617  89%    0.35K     63       11       252K proc_inode_cache
       676    615  90%    0.02K      4      169        16K Acpi-Namespace
       609    136  22%    0.02K      3      203        12K biovec-1
       495    493  99%    0.25K     33       15       132K size-256
       480    384  80%    0.12K     16       30        64K bio
       440    399  90%    0.50K     55        8       220K size-512
       312    206  66%    0.05K      4       78        16K delayacct_cache
       303    209  68%    0.04K      3      101        12K pid
       290    290 100%    0.38K     29       10       116K sock_inode_cache
    [root@localhost ~]# cat /etc/sysctl.conf
    # Kernel sysctl configuration file for Red Hat Linux
    # Controls IP packet forwarding
    net.ipv4.ip_forward=0
    # Controls source route verification
    net.ipv4.conf.default.rp_filter=1
    # Do not accept source routing
    net.ipv4.conf.default.accept_source_route=0
    # Oracle
    net.ipv4.ip_local_port_range=1024 65000
    net.core.rmem_default=4194304
    net.core.rmem_max=4194304
    net.core.wmem_default=262144
    net.core.wmem_max=262144
    net.ipv4.tcp_rmem=4096 65536 4194304
    net.ipv4.tcp_wmem=4096 65536 4194304
    # Keepalive Oracle
    net.ipv4.tcp_keepalive_time=3000
    net.ipv4.tcp_keepalive_intvl=30
    net.ipv4.tcp_keepalive_probes=15
    net.ipv4.tcp_retries2=3
    net.ipv4.tcp_syn_retries=2
    net.ipv4.tcp_sack=0
    net.ipv4.tcp_timestamps=0
    net.ipv4.tcp_window_scaling=0
    # Oracle
    fs.file-max = 6553600
    fs.aio-max-nr=3145728
    kernel.shmmni=4096
    kernel.sem=250 32000 100 142
    kernel.shmmax=2147483648
    kernel.shmall=3279547
    kernel.msgmnb=65536
    kernel.msgmni=2878
    kernel.msgmax=8192
    kernel.exec-shield=0
    # Controls the System Request debugging functionality of the kernel
    kernel.sysrq=1
    kernel.panic=60
    kernel.core_uses_pid=1
    [root@localhost ~]# free | grep Swap
    Swap:      3148700     319916    2828784
    [root@localhost ~]# cat /etc/fstab | grep "/dev/shm"
    tmpfs                   /dev/shm                tmpfs   size=1024M      0 0
    [root@localhost ~]# df | grep "/dev/shm"
    tmpfs                  1048576    452128    596448  44% /dev/shm
    NON-DEFAULT DB PARAMETERS:
    db_block_size        8192
    memory_target          633339904  /* automatic memory management */
    open_cursors         300
    processes            256
    disk_async_io        TRUE
    filesystemio_options SETALL

  • CPU usage is 98% when running my exe labview program

    Hi
    I have made an executable and installer for my labview program. When I install and run, the program uses a lot of cpu - almost 100%, even when the program is not computing. I recently changed over to LVIEW 8.2 from LVIEW 7.1. I had none of these issues with 7.1.
    Programatically, I use a state machine to continuously execute the program. I also use a couple of while loops as slaves to plot the results processed in the main loop. In all while loops I have a 'Wait' until next ms' vi to prevent the program using all the cpu, but it doesnt seem to be helping in LVIEW 8.2. This is somewhat strange.
    Can someone suggest what may be happening? and are there any methods that I can use to reduce cpu usage of my program?
    Cheers
    RVR

    It will be impossible to really troubleshoot this without a lot of additional infomation.
    Is the CPU usage only high in the built application, or is it also high if you run the same program in the 8.2 development environment?
    Was the 7.1 program exactly the same, or did you make any modifications since?
    Are you running 8.20 or did you upgrade to 8.2.1?
    What does the program actually do? Does it interact with DAQ hardware? File I/O?
    What does the program do when it is "computing"? Is the CPU use even higher then?
    Is there also a wait statement in the main while loop?
    What is your OS (windows, linux, mac, etc.)
    Is your computer reasonable for the task. Enough RAM, etc.
    How do the various loops communicate with each other? (queues, local-, global-, shared- variables, etc.)
    How much data is exchanged between the loops? At what rate?
    Do you use fixed or variable size arrays?
    Can you give us a more detailed overview of the code?
    How is the memory usage?
    have you done any profiling?
    LabVIEW Champion . Do more with less code and in less time .

  • Interactive 3D Flip- CPU usage ~50%

    in the "Interactive 3D Video Flip" tutorial  i take the cod and applied   to my stuff
    I noticed that when the page was rotated the  Flash  player  consume  40-50%  from my CPU , how it's possible?  the animation  it's finish  but the CPU it's 40-50% used . tested in mozilla and IE  and  from Flash ( when i  test the movie)    Pentium 4 and athlon 64 X2  tested!!!.. windows 7  last version of flash player 10.045..
    caurina  class... ^ transmission tween class  the same   ~50%
    i use the cod from this tutorial : http://gotoandlearn.com/play?id=91  with caurina class
    and the transitions.Tween from http://www.onenterflash.com/2009/07/adobe-flash-cs4-tutorial-3d-page-flip.html
    i don't  have any movie or animation  put in page 1 or page 2  ..nothing animate  just an rectangular  and the rotate button
    suggestions ?
    i attach the files fla and swf to see   open th .swf  with flash player  and in task manager voila de "surprise" cpu used 50% and the animation do nothing just stay

    look at the .swf from attach ... open it.... with flash player.... open task manager.and you will see that the CPU usage 50% for FlashPlayer.exe ( after you pus the rotation button) and  stay tu 40-50% even when the animation it's stop!!!!
    yeap i run win 7 and if  i put this interactiv 3d animation in to flash web site with animation..the aplication go very low
    just open the .swf ,click the rotation button and in task manager see the CPU usage of FlashPlayer.exe

  • 100% CPU Usage caused by HMI

    Hi everybody:
    I'm working with LabVIEW DSC 8.2.1 in a system that monitors many variables of a plant, such a typical SCADA system. For this reason, the use of the graphic tools is highly used on the development of this system. Everything works fine, but I have only one problem.... the usage of the CPU.
    When I am working on the development system I (not the executable) I start the application and after the variables are initialized and every process has started and are running , the CPU usage is raised around 90 - 100%. After a few days investigating the reason of this, I realized thay when I change the view on the screen to another view, for example the block diagram of the application, while the application is still running, the CPU usage goes around 15 - 25%. I've tried these many times changing the view from Front panel to Block Diagram and viceversa and the result is always the same: Front Panel= around 100%; Block diagram or another view (other applications MMIs, or Block Diagrams, etc.)= around 20%.
    Another thing that I realized is that the other view (different to front panel) has to fill the entire screen to work the way I'm telling before.
    When I build and run the executable, the usage of the CPU is the same... (around 100%), but I can't see any other application, because the application built is the shell of the OS, so no other views are available.
    I don't know if there's some other consideration to take into account about the HMI when creating an application, and I'll appreciate very much your help.
    Thanks in advance!
    Ignacio von Unger

     From http://100cpuusage.blogspot.com/
    100 Percent CPU Usage when you run programs after you install Windows XP Service Pack 2
    CPU Usage 100% Symptoms
    When you run some programs, the CPU Usage meter in Task Manager may indicate CPU Usage 100%. When CPU utilization reaches 100 percent, programs will run very slowly or stop responding (hang) and your computer is freezing or crashing.
    Noteress CTRL+ALT+DEL to view CPU utilization, click Task Manager, and then click the Performance tab.
    These symptoms occur after you install Microsoft Windows XP Service Pack 2 (SP2).
    CPU Usage 100% Cause
    These problem occurs because of the user interface code that is included in Windows XP SP2. The high CPU utilization is caused by the additional overhead that occurs when the IsWindow function is called by the user interface code.
    RESOLUTION
    Hotfix information
    A supported hotfix is now available from Microsoft. However, this hotfix is intended to correct only the problem that is described in this article. Apply this hotfix only to systems that are experiencing this specific problem. This hotfix might receive additional testing. Therefore, if you are not severely affected by this problem, we recommend that you wait for the next service pack that contains this hotfix.
    To resolve this problem, submit a request to Microsoft Online Customer Services to obtain the hotfix. To submit an online request to obtain the hotfix, visit the following Microsoft Web site:
    http://go.microsoft.com/?linkid=6294451
    Note If additional issues occur or any troubleshooting is required, you might have to create a separate service request. The usual support costs will apply to additional support questions and issues that do not qualify for this specific hotfix. To create a separate service request, visit the following Microsoft Web site:
    http://support.microsoft.com/contactus/?ws=support (http://support.microsoft.com/contactus/?ws=support)
    Prerequisites
    To apply this hotfix, you must have Windows XP SP2 installed.
    Restart requirement
    You must restart the computer after you apply this hotfix.
    Hotfix replacement information
    This hotfix does not replace any other hotfixes.
    File information
    The English version of this hotfix has the file attributes (or later file attributes) that are listed in the following table. The dates and times for these files are listed in Coordinated Universal Time (UTC). When you view the file information, it is converted to local time. To find the difference between UTC and local time, use the Time Zone tab in the Date and Time item in Control Panel. Date Time Version Size File name
    30-Mar-2005 19:53 5.1.2600.2643 577,024 User32.dll
    30-Mar-2005 01:30 5.1.2600.2643 1,836,544 Win32k.sys
    if you still do not know how to Fix CPU Usage 100%?
    I suggest you try targeted software - registry cleaner to fix cpu usage 100%
    Because there are many cases causing high cpu utilization.
    1. If you do a lot of web surfing and are concerned about spyware, adware infecting your machine, they will cause system crashes and CPU utilization reaches 100 percent. Some good registry cleaner has the function of spyware & adware removal.
    2. You install many beta version of the software, Drivers are not certified, which resulted in many errors, you get high cpu usage.
    3.100% CPU Usage while you use Internet Explorer
    4. many unneed Startup Program.
    5.Others PC Errors. - DLL errors, runtime errors, Windows-Installer Errors, Windows Startup Errors,paths Broken DLLs, OCX, and ActiveX Components all will cause 100% cpu usage. Your PC will run very slowly.
    Registry cleaner can do a complete scan of your entire file system and registry in under 2 minutes! Fix High Cpu Usage. Improve PC Speed By Up to 70%!
    http://www.100-cpu-usage.com/ suggest you to download registry cleaner to fix 100% cpu usage too.
    PCErrorsfixer.com - Top 3 Windows Registry Cleaners, Improve PC Performance,5 Star Rated. Fix 100% CPU Usage, Runtime Error, DLL Error,Windows Startup Errors,Internet Explorer Errors, Speed Up your slow PC.

  • PCI-6221 high CPU usage

    I'm currently using a PCI-6221 DAQmx card to continuously acquire readings from 9 channels at 5000 samples per channel per second. Using a timed while loop, I reduced the CPU usage to ~50%. When I add the additional control code for two other devices (that use ~4% of the CPU each), the CPU usage goes up to 100%. I tried to increase the DMA on the PCI card, but it doesn't appear that I can alter it on this card. I'm setting the "DAQmx Read" control to "Analog 1D Waveform N Channels N Samples." Also, when I remove the waveform indicators on the front screen, it doesn't lower the CPU much. If anyone can offer suggestions for lowering the CPU usage without sacrificing the above mentioned data collection parameters, I would appreciate the help greatly!
    Nina

    Alan,
    The CPU usage for the 9 EMG signals is ~50%.  The second input is video acquisition using an IMAQ 1411 card acquiring 30 samples per second with real time display.  The third input is a serial connection which samples at 1Hz.  Each of these codes uses approximately 4% CPU when running separately.  Each has the option of saving the data while still continually displaying on the front panel. The video acquisition utilizes the grab image setup along with notifiers for saving the data.   To link  the saving of the files (using case structures) to a single control button on the front panel , I created local boolean variables. The EMG readings use a timed while loop.  The serial connection uses a timed while loop cycling at the same frequency.  The video acquisition uses a while loop contained within a for loop.
    Thanks for your continued help!
    Nina
    Message Edited by nins on 07-06-2005 02:47 PM

  • Kernel_task on Mavericks high cpu usage

    EtreCheck output:
    Hardware Information:
              MacBook Pro (17-inch, Early 2009)
              MacBook Pro - model: MacBookPro5,2
              1 2.93 GHz Intel Core 2 Duo CPU: 2 cores
              8 GB RAM
    Video Information:
              NVIDIA GeForce 9400M - VRAM: 256 MB
              NVIDIA GeForce 9600M GT - VRAM: 512 MB
    System Software:
              OS X 10.9.1 (13B42) - Uptime: 0 days 6:25:52
    Disk Information:
              M4-CT256M4SSD2 disk0 : (256.06 GB)
                        EFI (disk0s1) <not mounted>: 209.7 MB
                        Macintosh HD (disk0s2) / [Startup]: 255.2 GB (34.27 GB free)
                        Recovery HD (disk0s3) <not mounted>: 650 MB
              HL-DT-ST DVDRW  GS21N 
    USB Information:
              Apple Inc. Built-in iSight
              Apple, Inc. Apple Internal Keyboard / Trackpad
              Apple Computer, Inc. IR Receiver
              Apple Inc. BRCM2046 Hub
                        Apple Inc. Bluetooth USB Host Controller
    FireWire Information:
    Thunderbolt Information:
    Configuration files:
              /etc/sysctl.conf - Exists
    Kernel Extensions:
              org.pqrs.driver.KeyRemap4MacBook          (9.3.0)
    Startup Items:
              ChmodBPF: Path: /Library/StartupItems/ChmodBPF
              SiCoreService: Path: /Library/StartupItems/SiCoreService
    Launch Daemons:
              [System] com.adobe.fpsaud.plist 3rd-Party support link
              [System] com.adobe.SwitchBoard.plist 3rd-Party support link
              [System] com.binaryage.asepsis.daemon.plist 3rd-Party support link
              [System] com.crashplan.engine.plist 3rd-Party support link
              [System] com.deploystudio.server.plist 3rd-Party support link
              [System] com.github.GitHub.GHInstallCLI.plist 3rd-Party support link
              [System] com.google.keystone.daemon.plist 3rd-Party support link
              [System] com.machangout.glims.loader.plist 3rd-Party support link
              [System] com.microsoft.office.licensing.helper.plist 3rd-Party support link
              [System] com.oracle.java.Helper-Tool.plist 3rd-Party support link
              [System] com.oracle.java.JavaUpdateHelper.plist 3rd-Party support link
              [System] com.teamviewer.teamviewer_service.plist 3rd-Party support link
              [System] com.ubuntu.one.fsevents.plist 3rd-Party support link
              [System] net.sourceforge.MonolingualHelper.plist 3rd-Party support link
              [System] org.cindori.AuthHelper.plist 3rd-Party support link
              [System] org.gpgtools.gpgmail.patch-uuid.plist 3rd-Party support link
              [System] org.macosforge.xquartz.privileged_startx.plist 3rd-Party support link
    Launch Agents:
              [System] com.adobe.AAM.Updater-1.0.plist 3rd-Party support link
              [System] com.amazon.sendtokindle.launcher.plist 3rd-Party support link
              [System] com.binaryage.asepsis.updater.plist 3rd-Party support link
              [System] com.citrix.AuthManager_Mac.plist 3rd-Party support link
              [System] com.citrix.ReceiverHelper.plist 3rd-Party support link
              [System] com.citrix.ServiceRecords.plist 3rd-Party support link
              [System] com.google.keystone.agent.plist 3rd-Party support link
              [System] com.machangout.glims.agent.plist 3rd-Party support link
              [System] com.oracle.java.Java-Updater.plist 3rd-Party support link
              [System] com.teamviewer.teamviewer.plist 3rd-Party support link
              [System] com.teamviewer.teamviewer_desktop.plist 3rd-Party support link
              [System] com.wacom.wacomtablet.plist 3rd-Party support link
              [System] org.glimmerblocker.updater.plist 3rd-Party support link
              [System] org.gpgtools.gpgmail.enable-bundles.plist 3rd-Party support link
              [System] org.gpgtools.gpgmail.patch-uuid-user.plist 3rd-Party support link
              [System] org.gpgtools.Libmacgpg.xpc.plist 3rd-Party support link
              [System] org.gpgtools.macgpg2.fix.plist 3rd-Party support link
              [System] org.gpgtools.macgpg2.shutdown-gpg-agent.plist 3rd-Party support link
              [System] org.gpgtools.macgpg2.updater.plist 3rd-Party support link
              [System] org.macosforge.xquartz.startx.plist 3rd-Party support link
              [System] org.pqrs.KeyRemap4MacBook.server.plist 3rd-Party support link
    User Launch Agents:
              [not loaded] ca.madefresh.BodegaAgent.plist 3rd-Party support link
              [not loaded] com.adobe.AAM.Updater-1.0.plist 3rd-Party support link
              [not loaded] com.adobe.ARM.[...].plist 3rd-Party support link
              [not loaded] com.akamai.single-user-client.plist 3rd-Party support link
              [not loaded] com.crashplan.javacheck.plist 3rd-Party support link
              [not loaded] com.dropboxforums.mduagent.plist 3rd-Party support link
              [not loaded] com.ecamm.printopia.plist 3rd-Party support link
              [not loaded] com.google.Chrome.framework.plist 3rd-Party support link
              [not loaded] com.google.GoogleContactSyncAgent.plist 3rd-Party support link
              [not loaded] com.spotify.webhelper.plist 3rd-Party support link
              [not loaded] com.valvesoftware.steamclean.plist 3rd-Party support link
              [not loaded] cx.pow.powd.plist 3rd-Party support link
    User Login Items:
              iTunesHelper
              gfxCardStatus
              ControlPlane
              Bartender
              BoxSyncHelper
              Dropbox
              Google Drive
              Music Manager
              CrashPlan menu bar
              TotalTerminal
              Now Playing
              Eye-Fi Helper
              Caffeine
              Timehop Sync
              KeyRemap4MacBook
              Proximity
              TeamViewer
              ClamXavSentry
              Alfred 2
              owncloud
              RescueTime
              FastScripts
              TotalFinder
              VMware Fusion Start Menu
              Autodesk 360
    Internet Plug-ins:
              AdobePDFViewerNPAPI: Version: 11.0.06 - SDK 10.6 3rd-Party support link
              Flash Player: Version: 12.0.0.70 - SDK 10.6 3rd-Party support link
              AdobePDFViewer: Version: 11.0.06 - SDK 10.6 3rd-Party support link
              googletalkbrowserplugin: Version: 5.1.4.17398 3rd-Party support link
              QuickTime Plugin: Version: 7.7.3
              FlashPlayer-10.6: Version: 12.0.0.70 - SDK 10.6 3rd-Party support link
              CitrixICAClientPlugIn: Version: 11.8.2 - SDK 10.7 3rd-Party support link
              zako: Version: zako 1.0.0.0 - SDK 10.8 3rd-Party support link
              nplastpass: Version: 2.0.11 3rd-Party support link
              npgtpo3dautoplugin: Version: 0.1.44.29 - SDK 10.5 3rd-Party support link
              Silverlight: Version: 5.1.20513.0 - SDK 10.6 3rd-Party support link
              MeetingJoinPlugin: Version: (null) - SDK 10.6 3rd-Party support link
              net.juniper.DSSafariExtensions: Version: (null) 3rd-Party support link
              AmazonMP3DownloaderPlugin101750: Version: AmazonMP3DownloaderPlugin 1.0.17 - SDK 10.4 3rd-Party support link
              Default Browser: Version: 537 - SDK 10.9
              Flip4Mac WMV Plugin: Version: 3.2.0.16   - SDK 10.8 3rd-Party support link
              o1dbrowserplugin: Version: 5.1.4.17398 3rd-Party support link
              WacomTabletPlugin: Version: WacomTabletPlugin 2.1.0.2 3rd-Party support link
              SharePointBrowserPlugin: Version: 14.3.8 - SDK 10.6 3rd-Party support link
              JavaAppletPlugin: Version: Java 7 Update 51 3rd-Party support link
              WacomNetscape: Version: 2.1.0-1 - SDK 10.8 3rd-Party support link
    Safari Extensions:
              BetterSource: Version: 1.1
              Ultimate Status Bar: Version: 1.3
              LastPass: Version: 3.1.0
              Pocket: Version: 1.5.7
              Ghostery: Version: 5.1.0
              Buffer: Version: 2.2.17
              SendTab: Version: 3.2.0
              scroblr: Version: 2.0.17
              Duplicate Tab Button: Version: 2.0
              NoMoreiTunes: Version: 2.3.1
              Evernote Web Clipper: Version: 6.1
              GooglePlus: Version: 1.3
              DoNotTrackMe: Online Privacy Protection: Version: 3.1.1064
              Buffer: Version: 2.2.18
    Audio Plug-ins:
              BluetoothAudioPlugIn: Version: 1.0 - SDK 10.9
              AirPlay: Version: 1.9 - SDK 10.9
              AppleAVBAudio: Version: 2.0.0 - SDK 10.9
              iSightAudio: Version: 7.7.3 - SDK 10.9
    iTunes Plug-ins:
              Quartz Composer Visualizer: Version: 1.4 - SDK 10.9
    User iTunes Plug-ins:
              AudioScrobbler: Version: 6.0.5 - SDK 10.8 3rd-Party support link
    User Internet Plug-ins:
              BlueStacks Install Detector: Version: 0.2.5 - SDK 10.6 3rd-Party support link
              WebEx64: Version: 1.0 - SDK 10.6 3rd-Party support link
              CitrixOnlineWebDeploymentPlugin: Version: 1.0.105 3rd-Party support link
              Picasa: Version: 1.0 - SDK 10.4 3rd-Party support link
              Google Earth Web Plug-in: Version: 7.1 3rd-Party support link
    3rd Party Preference Panes:
              Akamai NetSession Preferences  3rd-Party support link
              Box Sync  3rd-Party support link
              RCDefaultApp
              DeployStudioServer  3rd-Party support link
              Flash Player  3rd-Party support link
              Flip4Mac WMV  3rd-Party support link
              FUSE for OS X (OSXFUSE)  3rd-Party support link
              GeekTool  3rd-Party support link
              GPGPreferences  3rd-Party support link
              handyPrint  3rd-Party support link
              Java  3rd-Party support link
              MacFUSE  3rd-Party support link
              MenuMeters  3rd-Party support link
              MouseLocator  3rd-Party support link
              MusicManager  3rd-Party support link
              Printopia  3rd-Party support link
              Secrets  3rd-Party support link
              Tuxera NTFS  3rd-Party support link
              WacomTablet  3rd-Party support link
              Xmarks for Safari  3rd-Party support link
    Old Applications:
              iSkysoft Helper Compact:          Version: 2.2.6.4 - SDK 10.5 3rd-Party support link
                        /Users/[redacted]/Library/Application Support/Helper/iSkysoft Helper Compact.app
              Microsoft Language Register:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        /Applications/Microsoft Office 2011/Additional Tools/Microsoft Language Register/Microsoft Language Register.app
              MailHubUpdater:          Version: 1.0 - SDK 10.0 3rd-Party support link
                        /Users/[redacted]/Downloads/MailHub.mailbundle/Contents/MacOS/MailHub Updater.app
              SLLauncher:          Version: 1.0 - SDK 10.5 3rd-Party support link
                        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
              Solver:          Version: 1.0 - SDK 10.5 3rd-Party support link
                        /Applications/Microsoft Office 2011/Office/Add-Ins/Solver.app
              CrucialMacScanner:          Version: 1.0 - SDK 10.0 3rd-Party support link
              Microsoft Communicator:          Version: 13.1.3 - SDK 10.5 3rd-Party support link
              Amazon MP3 Downloader:          Version: INFO_PLIST_VERSION - SDK 10.4 3rd-Party support link
              Microsoft Lync:          Version: 14.0.5 - SDK 10.5 3rd-Party support link
              FlickrFriend:          Version: 1.01 - SDK 10.5 3rd-Party support link
              Music Manager:          Version: 1.0 - SDK 10.5 3rd-Party support link
              Sequel Pro:          Version: 1.0.2 - SDK 10.5 3rd-Party support link
              VZAccess Manager:          Version: 7.4.4 - SDK 10.5 3rd-Party support link
              DMG Architect:          Version: 1.2 - SDK 10.0 3rd-Party support link
              /Applications/Microsoft Office 2011
                        Microsoft PowerPoint:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Excel:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Outlook:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Word:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Document Connection:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
              dynamiclinkmanager:          Version: 6.0.0 - SDK 10.5 3rd-Party support link
                        /Library/Application Support/Adobe/Common/dynamiclink/CS6/dynamiclinkmanager.app
              /Applications/Microsoft Office 2011/Office
                        Microsoft Graph:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Database Utility:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Office Reminders:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Upload Center:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        My Day:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        SyncServicesAgent:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Open XML for Excel:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Alerts Daemon:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Database Daemon:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Chart Converter:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
                        Microsoft Clip Gallery:          Version: 14.3.8 - SDK 10.5 3rd-Party support link
              dynamiclinkmediaserver:          Version: 6.0.0 - SDK 10.5 3rd-Party support link
                        /Library/Application Support/Adobe/Common/dynamiclinkmediaserver/1.0/dynamiclinkmediaserver.app
              DesktopWidgets:          Version: 1.0 - SDK 10.5
                        /Applications/DesktopWidgets/DesktopWidgets.app
              /Users/[redacted]/Library/Application Support/WebEx Folder/1224
                        Cisco WebEx Meeting Center:          Version: 11.24.32.0 - SDK 10.5 3rd-Party support link
                        convertpdf:          Version: 1.2 - SDK 10.5 3rd-Party support link
                        asannotation2:          Version: 8.25.31.0 - SDK 10.5 3rd-Party support link
                        atmsupload:          Version: 4.14.29.0 - SDK 10.5 3rd-Party support link
              Notify:          Version: 1.0 - SDK 10.5 3rd-Party support link
                        /Library/Application Support/PrivateTunnel/Notify.app
              Microsoft AutoUpdate:          Version: 2.3.6 - SDK 10.4 3rd-Party support link
                        /Library/Application Support/Microsoft/MAU2.0/Microsoft AutoUpdate.app
              /Applications/Hugin
                        PTBatcherGUI:          Version: 2012.0.0 - SDK 10.5 3rd-Party support link
                        Hugin:          Version: 2012.0.0 - SDK 10.5 3rd-Party support link
                        calibrate_lens_gui:          Version: 2012.0.0 - SDK 10.5 3rd-Party support link
              Audacity:          Version: 2.0.3.0 - SDK 10.4 3rd-Party support link
                        /Applications/Audacity/Audacity.app
              /Library/Application Support/Microsoft/MERP2.0
                        Microsoft Error Reporting:          Version: 2.2.9 - SDK 10.4 3rd-Party support link
                        Microsoft Ship Asserts:          Version: 1.1.4 - SDK 10.4 3rd-Party support link
              /Users/[redacted]/Library/Application Support/WebEx Folder/1324
                        convertpdf:          Version: 1.2 - SDK 10.5 3rd-Party support link
                        Cisco WebEx Meeting Center:          Version: 1304.23.2811.0 - SDK 10.5 3rd-Party support link
                        asannotation2:          Version: 1206.25.2804.0 - SDK 10.5 3rd-Party support link
                        atmsupload:          Version: 1209.12.2806.0 - SDK 10.5 3rd-Party support link
              SA Color Finesse 3 UI:          Version: 3.0.6(275) - SDK 10.5 3rd-Party support link
                        /Applications/Adobe After Effects CS6/Plug-ins/Effects/Synthetic Aperture/(CF3 Support)/SA Color Finesse 3 UI.app
    Time Machine:
              Skip System Files: NO
              Mobile backups: OFF
              Auto backup: YES
              Volumes being backed up:
                        Macintosh HD: Disk size: 237.67 GB Disk used: 205.76 GB
              Destinations:
                        Backup [Local] (Last used)
                        Total size: 930.71 GB
                        Total number of backups: 19
                        Oldest backup: 2013-09-23 10:29:08 +0000
                        Last backup: 2014-02-07 11:48:11 +0000
                        Size of backup disk: Excellent
                                  Backup size 930.71 GB > (Disk size 237.67 GB X 3)
                        Macintosh HD 3 [Local]
                        Total size: 930.71 GB
                        Total number of backups: 15
                        Oldest backup: 2013-09-25 00:11:13 +0000
                        Last backup: 2014-02-07 10:45:34 +0000
                        Size of backup disk: Excellent
                                  Backup size 930.71 GB > (Disk size 237.67 GB X 3)
              Time Machine details may not be accurate.
              All volumes being backed up may not be listed.
    Top Processes by CPU:
                  19%          java
                   6%          SkyDrive
                   6%          WindowServer
                   2%          EtreCheck
                   1%          ocspd
    Top Processes by Memory:
              279 MB          Safari
              238 MB          Finder
              172 MB          java

    The kernel is using excessive processor cycles. Below are some possible causes for the condition.
    Throttling
    When it gets high temperature readings from the hardware, or a low-voltage reading from the battery, the kernel may try to compensate by interrupting the processor(s) to slow them down and reduce power consumption. This condition can be due to
    a buildup of dust on the logic board
    high ambient temperature
    a worn-out or faulty battery in a portable
    the malfunction of a cooling fan or sensor
    Note that if the problem is caused by a sensor, there may be no actual overheating or undervoltage.
    If the computer is portable, test with and without the AC adapter connected. If kernel_task hogs the processor only on battery power, the fault is in the battery or the logic board. If it happens only on AC power, charging is causing the machine to heat up. That may be normal on some models. CPU usage should drop when charging is complete.
    Apple Diagnostics or the Apple Hardware Test, though not very reliable, is sometimes able to detect a bad fan or sensor.
    If nothing is wrong with the hardware, then whatever you can do to improve cooling may help.
    Installed software
    User-installed software that includes a device driver or other kernel code may thrash the kernel. That category includes virtualization software, such as Parallels and VMware, as well as most commercial "anti-virus" products. Some system-monitoring applications, such as "iStat," can also contribute to the problem. You can test for this possibility by completely disabling or removing the software according to the developer's instructions, or booting in safe mode. Note, however, that disabling a system modification without removing it or booting in safe mode may not be as easy as you think it is.
    Corrupt NVRAM or SMC data
    Sometimes the problem is cleared up by resetting the NVRAM or the SMC.
    External display
    Connecting an external LCD display to some MacBook Pro models may cause this issue. If applicable, test by disconnecting the display. You might get better results with a newer LED display.

  • High CPU usage while running a java program

    Hi All,
    Need some input regarding one issue I am facing.
    I have written a simple JAVA program that lists down all the files and directories under one root directory and then copies/replicates them to another location. I am using java.nio package for copying the files. When I am running the program, everything is working fine. But the process is eating up all the memories and the CPU usage is reaching upto 95-100%. So the whole system is getting slowed down.
    Is there any way I can control the CPU usage? I want this program to run silently without affecting the system or its performance.

    Hi,
    Below is the code snippets I am using,
    For listing down files/directories:
            static void Process(File aFile, File aFile2) {
              spc_count++;
              String spcs = "";
              for (int i = 0; i < spc_count; i++)
              spcs += "-";
              if(aFile.isFile()) {
                   System.out.println(spcs + "[FILE] " + aFile2.toURI().relativize(aFile.toURI()).getPath());
                   String newFile = dest + aFile2.toURI().relativize(aFile.toURI()).getPath();
                   File nf = new File(newFile);
                   try {
                        FileCopy.copyFile(aFile ,nf);
                   } catch (IOException ex) {
                        Logger.getLogger(ContentList.class.getName()).log(Level.SEVERE, null, ex);
              } else if (aFile.isDirectory()) {
                   //System.out.println(spcs + "[DIR] " + aFile2.toURI().relativize(aFile.toURI()).getPath());
                   String newDir = dest + aFile2.toURI().relativize(aFile.toURI()).getPath();
                   File nd = new File(newDir);
                   nd.mkdir();
                   File[] listOfFiles = aFile.listFiles();
                   if(listOfFiles!=null) {
                        for (int i = 0; i < listOfFiles.length; i++)
                             Process(listOfFiles, aFile2);
                   } else {
                        System.out.println(spcs + " [ACCESS DENIED]");
              spc_count--;
    for copying files/directories:public static void copyFile(File in, File out)
    throws IOException {
    FileChannel inChannel = new
    FileInputStream(in).getChannel();
    FileChannel outChannel = new
    FileOutputStream(out).getChannel();
    try {
    inChannel.transferTo(0, inChannel.size(),
    outChannel);
    catch (IOException e) {
    throw e;
    finally {
    if (inChannel != null) inChannel.close();
    if (outChannel != null) outChannel.close();
    Please let me know if any better approach is there. But as I already said, currently it's eating up the whole memory.
    Thanks in advance.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

Maybe you are looking for

  • Making a pdf of an InDesign Booklet

    Ever since I installed Snow Leopard I have not been able to format InDesign booklets into a pdf. I have read many postings on this topic but nothing has worked so far. The best I have come up with is for me to de-install Snow Leopard and go back to L

  • Final Cut Server as "regular" DAM

    Hi people, I've been thinking if Final Cut Server can be used as a "regular" DAM, just like Extensis Portfolio, cataloging mostly images and nothing related to video media. If it can, that's a definitely good news, specially because Extensis solution

  • How to load info type 7410 career types to Jobs or Positions

    Hello Expert, I'm trying to use T-code PP01 to load career types and career levels (info  type 7410 )  by LSMW, But I'm not able to maintain info type 7410 by pp01, I had change the  table T77CD to accept maintain infotype from standard transaction,

  • Unable to connect to the itunes store on my laptop after upgrading to ios 7.

    I have Windows XP - Service Pack 2 and after upgrading my itunes to ios 7, I am unable to connect to the itunes store.  Every time I click on the itunes store I receive a message that says "itunes could not connect to the itunes store.  An unknown er

  • Finder tags in cloud services?

    Does anyone know how to get cloud services other than iCloud to include OS X tag metadata?  I'm aware that iCloud Drive is capable but I need to create an account that will be shared between several people so I need something like google drive, dropb