Optimiser difference : a max() sometimes doing a backward scan and sometimes forward scan

I interested why we get 2 different query plans on Sybase 15.5 and 15.7 for similar queries
declare @MID int
select @MID = 25717
select MID , max(Date) from CB where MID = @MID group by MID
select @MID, max(Date) from CB where MID = @MID
The index is on (MID, Date).
The first does forward scan and the second does a backward scan.
With our data, the first query does 8000 page reads (with a SAN read costing 4ms = 32s)
and the second query does 4 page reads (with a SAN read costing 4ms = 16ms)
1)
|   |   |GROUP SORTED Operator (VA = 1)
|   |   |  Evaluate Grouped MAXIMUM AGGREGATE.
|   |   |
|   |   |   |SCAN Operator (VA = 0)
|   |   |   |  FROM TABLE
|   |   |   |  CB
|   |   |   |  Index : IDX1
|   |   |   |  Forward Scan.
|   |   |   |  Positioning by key.
|   |   |   |  Index contains all needed columns. Base table will not be read.
|   |   |   |  Keys are:
|   |   |   |    MID ASC
|   |   |   |  Using I/O Size 16 Kbytes for index leaf pages.
|   |   |   |  With LRU Buffer Replacement Strategy for index leaf pages.
2)
|   |  Evaluate Ungrouped MAXIMUM AGGREGATE.
|   |  Scanning only up to the first qualifying row.
|   |
|   |   |SCAN Operator (VA = 0)
|   |   |  FROM TABLE
|   |   |  CB
|   |   |  Index : IDX1
|   |   |  Backward scan.
|   |   |  Positioning by key.
|   |   |  Index contains all needed columns. Base table will not be read.
|   |   |  Keys are:
|   |   |    MID ASC
|   |   |  Using I/O Size 2 Kbytes for index leaf pages.
|   |   |  With LRU Buffer Replacement Strategy for index leaf pages.
Why does the optimiser generate different plans ?

Okay - so the one reason I like to see plancost vs. just showplan...you can see in the one without the group by clause that it does a ScalarAgg vs. a GroupSorted ala:
(without group by clause)
==================== Lava Operator Tree ====================
                        Emit                               
                        (VA = 2)                           
                        r:1 er:1                           
                        cpu: 0                             
            ScalarAgg                                      
              Max                                          
            (VA = 1)                                       
            r:1 er:1                                       
            cpu: 0                                         
IndexScan                                                  
IDX1                                                       
(VA = 0)                                                   
r:1 er:1                                                   
l:3 el:3                                                   
p:3 ep:3                                                   
============================================================
(with group by clause)
==================== Lava Operator Tree ====================
                                    Emit                    
                                    (VA = 3)                
                                    r:1 er:8                
                                    cpu: 300                
                        Restrict                            
                        (0)(0)(0)(4)(0)                     
                        (VA = 2)                            
                        r:1 er:8                            
            GroupSorted                                     
            Grouping                                        
            (VA = 1)                                        
            r:1 er:8                                        
IndexScan                                                   
IDX1                                                        
(VA = 0)                                                    
r:353666 er:158986                                          
l:863 el:386                                                
p:176 ep:78                                                 
============================================================
Now the key to the problem is in the GroupSorted function.
But, let's step back a bit.   Query optimization is just one of the many (and nearly final) steps prior to query execution.  Prior to query optimization we have the TDS Receive buffers, the SQL parsing, the SQL normalization and pre-processing.   In the pre-processing, we normally try to construct what is called the LOP (Logical Operator) tree.   Note that no-where in that sequence is any execution - I mention this because once before you commented on someone else's posting about a purported optimization problem with
select * from table where column=<value> or 1=2
....the notion of evaluating 1=2 wouldn't happen until the execution phase - so optimization will not consider it - in this case it looks it at as an expression to be evaluated and skips it.   If you want to see what I mean do a showplan and statistics io on
select * from sysobjects where 1=2
and you will see that due to lack of sargs we do a tablescan from the optimizer due to lack of sargs...but it is during query execution that we short circuit and hence the 0 LIO's.    I point that out because there are different phases involved and in this case it is the pre-processor that selects the overall LOP tree to start with....but then the optimizer has to consider which LOPs to use underneath that such as GroupSorted (using an index) vs. GroupSorting (sort operation), etc.
Soooo....in the GROUP BY example, it starts with:
The Lop tree:
( project
        ( group
                ( scan CB
vs. your other example (without the Group By):
The Lop tree:
( project
        ( scalar
                ( scan CB
....so you can see the difference right off the bat in what the optimizer received from the pre-processor.   Like I pointed out earlier, the problem *started* the second you put the group by clause in - before the optimizer even got to look at.
You then get 2 optimization blocks....the innermost for the (scan CB) and then the outer for (group (inner block)) ala:
OptBlock1
        The Lop tree:
        ( scan CB
        Generic Tables: ( Gtt1( CB ) Gti2( IDX1 ) )
        Generic Columns: (  Gc0(CB ,Rid) Gc1(CB ,MID) Gc2(CB ,ValuationDate))  Virtual Generic Columns: ( )
        Predicates: ( { CB.MID Gtg0.Gc4 }  = 0 tc:{1} )
        Transitive Closures: ( Tc0 = {  Gc0(CB ,Rid)} Tc1 = {  Gc1(CB ,MID) Gc4(Gtg0 ,_gcelement_4)} Tc2 = {  Gc2(CB ,ValuationDate)} )
OptBlock0
        The Lop tree:
        ( pseudoscan
        Generic Tables: ( Gtg0 )
        Generic Columns: (  Gc3(Gtg0 ,_gcelement_3) Gc4(Gtg0 ,_gcelement_4) Gc5(Gtg0 ,_virtualagg) Gc6(Gtg0 ,_virtualagg))  Virtual Generic Columns: ( )
        Predicates: ( { CB.MID Gtg0.Gc4 }  = 0 tc:{1} )
        Transitive Closures: ( Tc3 = {  Gc3(Gtg0 ,_gcelement_3) Gc5(Gtg0 ,_virtualagg) Gc6(Gtg0 ,_virtualagg)} Tc1 = {  Gc1(CB ,MID) Gc4(Gtg0 ,_gcelement_4)} )
The question is, why did we estimate 8 rows returned from the group by????   And would that change the behavior???
That comes from this section:
        ( PopGroupSorted
                proj: {{ CB.MID Gtg0.Gc4 } ,{ Gtg0.Gc3 Gtg0._virtualagg Gtg0._virtualagg } }
                pred: [Tc{} Pe{{ CB.MID Gtg0.Gc4 }  = 0}]
                subs: {CB.MID ,Gtg0._virtualagg }
                cost: 66305.12
                I/O estimate : [
                        rowcount=7.388771
                        averagewidth=19
                        pages=1
                        prefetchpages=1
                        lio=0 pio=0 cpu=158985.8
                        total lio=385.3457 total pio=77.60534 total cpu=635943
                        tempdb=0
                Cache Strategy: [
                        prefetch=YES
                        iosize=131072 Bytes
                        bufreplace=LRU
                order: none
                ( PopIndScan index: Gti2( IDX1 )
                                table: Gtt1( CB )
                        proj: {{ CB.MID Gtg0.Gc4 } ,{ CB.ValuationDate } }
                        pred: [Tc{} Pe{{ CB.MID Gtg0.Gc4 }  = 0}]
                        subs: {CB.MID ,CB.ValuationDate }
                        cost: 50406.55
                        I/O estimate : [
                                rowcount=158985.8
                                averagewidth=14
                                pages=383.3457
                                prefetchpages=383.3457
                                lio=385.3457 pio=77.60534 cpu=476957.2
                                scanlio=385.3457 scanpio=77.60534 scancpu=476957.2
                                tempdb=0
                        Cache Strategy: [
                                prefetch=YES
                                iosize=131072 Bytes
                                bufreplace=LRU
                        order: none )
Now to understand what is happening, let's take the bad example:
select MID , max(Date) from CB where MID = @MID group by MID
Now, let's make it a bit more generic:
select type, count(*), max(crdate)
from sysobjects
where type='P'
group by type
If run in master on my machine, I get:
type                                            
P             20             Oct  2 2014 12:23PM
...as a result, with an initial LOP of:
The Lop tree:
( project
( group
  ( scan sysobjects
Which should be no surprise....with no index on type...or due to the quantity of rows in sysobjects, we simply go for a tablescan.   But we have our (group ) LOP.....and if we look at the plancost:
==================== Lava Operator Tree ====================
                                    Emit                   
                                    (VA = 3)               
                                    r:1 er:2               
                                    cpu: 0                 
                        Restrict                           
                        (0)(0)(0)(4)(0)                    
                        (VA = 2)                           
                        r:1 er:2                           
            GroupSorted                                    
            Grouping                                       
            (VA = 1)                                       
            r:1 er:2                                       
TableScan                                                  
sysobjects                                                 
(VA = 0)                                                   
r:20 er:19                                                 
l:8 el:8                                                   
p:0 ep:2                                                   
============================================================
We see sort of the same problem....we are estimating 2 rows to be returned from the group by. 
Stepping back a bit, remember, if we don't have any stats on a column, we assume 0.1 for =, 0.25 for bounded range (between) and 0.3 for unbounded range.   In my case, with no stats on type in sysobjects in master, we can see this clearly in the index selectivity area of:
The table (Datarows) has 188 rows, 6 pages,
Data Page Cluster Ratio 0.9999900
    type = 'P'
   Estimated selectivity for type,
        selectivity = 0.1,
    Search argument selectivity is 0.1.
    using table prefetch (size 32K I/O)
    Large IO selected: The number of leaf pages qualified is > MIN_PREFETCH pages
    in data cache 'default data cache' (cacheid 0) with LRU replacement
In the index selectivity due to using the magic values.   In the group by costing, we see:
( PopGroupSorted
  proj: {{ sysobjects.type Gtg0.Gc5 } ,{ Gtg0.Gc3 Gtg0._virtualagg Gtg0._virtualagg } ,{ Gtg0.Gc4 Gtg0._virtualagg Gtg0._virtualagg } }
  pred: [Tc{} Pe{{ sysobjects.type Gtg0.Gc5 }  = 'P'}]
  subs: {sysobjects.type ,Gtg0._virtualagg ,Gtg0._virtualagg }
  cost: 65.44175
  I/O estimate : [
   rowcount=1.88
   averagewidth=21
   pages=1
   prefetchpages=1
   lio=0 pio=0 cpu=18.8
   total lio=8 total pio=1.00007 total cpu=244.4
  Cache Strategy: [
   prefetch=YES
   iosize=4096 Bytes
   bufreplace=LRU
  order: none
  ( PopTabScan table: Gtt1( sysobjects )
   proj: {{ sysobjects.type Gtg0.Gc5 } ,{ sysobjects.crdate } }
   pred: [Tc{} Pe{{ sysobjects.type Gtg0.Gc5 }  = 'P'}]
   subs: {sysobjects.type ,sysobjects.crdate }
   cost: 63.56175
   I/O estimate : [
   rowcount=18.8
    averagewidth=12
    pages=8
    prefetchpages=8
    lio=8 pio=1.00007 cpu=225.6
    scanlio=8 scanpio=1.00007 scancpu=225.6
   Cache Strategy: [
    prefetch=YES
    iosize=32768 Bytes
    bufreplace=LRU
   order: none )
Now....to go from the row count to the estimated rows for a group by, we don't use the column selectivity - we use column density stats.  The real reason behind the 0.1 is that we are saying is that there likely is only 10 distinct values.   For example, if I update statistics sysobjects (type) in my system, the output changes to:
==================== Lava Operator Tree ====================
                                    Emit                   
                                    (VA = 3)               
                                    r:1 er:1               
                                    cpu: 0                 
                        Restrict                           
                        (0)(0)(0)(4)(0)                    
                        (VA = 2)                           
                        r:1 er:1                           
            GroupSorted                                    
            Grouping                                       
            (VA = 1)                                       
            r:1 er:1                                       
TableScan                                                  
sysobjects                                                 
(VA = 0)                                                   
r:20 er:21                                                 
l:8 el:8                                                   
p:0 ep:2                                                   
============================================================
Which is based on:
( PopGroupSorted
  proj: {{ sysobjects.type Gtg0.Gc5 } ,{ Gtg0.Gc3 Gtg0._virtualagg Gtg0._virtualagg } ,{ Gtg0.Gc4 Gtg0._virtualagg Gtg0._virtualagg } }
  pred: [Tc{} Pe{{ sysobjects.type Gtg0.Gc5 }  = 'P'}]
  subs: {sysobjects.type ,Gtg0._virtualagg ,Gtg0._virtualagg }
  cost: 65.80175
  I/O estimate : [
   rowcount=1
   averagewidth=21
   pages=1
   prefetchpages=1
   lio=0 pio=0 cpu=20
   total lio=8 total pio=1.00007 total cpu=248
  Cache Strategy: [
   prefetch=YES
   iosize=4096 Bytes
   bufreplace=LRU
  order: none
  ( PopTabScan table: Gtt1( sysobjects )
   proj: {{ sysobjects.type Gtg0.Gc5 } ,{ sysobjects.crdate } }
   pred: [Tc{} Pe{{ sysobjects.type Gtg0.Gc5 }  = 'P'}]
   subs: {sysobjects.type ,sysobjects.crdate }
   cost: 63.80175
   I/O estimate : [
    rowcount=20
    averagewidth=12
    pages=8
    prefetchpages=8
    lio=8 pio=1.00007 cpu=228
    scanlio=8 scanpio=1.00007 scancpu=228
Note that my overall rowcount went up a bit....but the group by went to 1 row....if we look at the column stats via optdiag:
Statistics for column:                                                          "type"
Last update of column statistics:                                               Feb 15 2015  9:18:32:850PM
     Range cell density:                                                        0.0053191489361702
    Total density:                                                             0.4216274332277049
     Range selectivity:                                                         default used (0.33)
     In between selectivity:                                                    default used (0.25)
     Unique range values:                                                       0.0053191489361702
     Unique total values:                                                       0.2000000000000000
     Average column width:                                                      default used (2.00)
     Rows scanned:                                                              188.0000000000000000
     Statistics version:                                                        4
Histogram for column:                                                           "type"
Column datatype:                                                                char(2)
Requested step count:                                                           20
Actual step count:                                                              9
Sampling Percent:                                                               0
Tuning Factor:                                                                  20
Out of range Histogram Adjustment is DEFAULT.                                  
Low Domain Hashing.                                                            
     Step     Weight                    Value
        1     0.00000000       <=       "EJ"
        2     0.00531915        <       "P "
        3     0.10638298        =       "P "
        4     0.00000000        <       "S "
        5     0.30319148        =       "S "
        6     0.00000000        <       "U "
        7     0.56382978        =       "U "
        8     0.00000000        <       "V "
        9     0.02127660        =       "V "
....so the 20 rows are due to the slightly higher 0.10638 vs. 0.1...
Now....if we know the value for the where clause and have stats on the column, I notice we always estimate 1 row to be returned from the group by.   However, if we don't have stats - or if we don't know the value - we estimate more than one row.   For example if I declare @var for type ala:
declare @type char(2)
select @type='P'
select type, max(crdate)
from sysobjects
where type=@type
group by type
go
I then get:
( PopGroupSorted
  proj: {{ sysobjects.type Gtg0.Gc4 } ,{ Gtg0.Gc3 Gtg0._virtualagg Gtg0._virtualagg } }
  pred: [Tc{} Pe{{ sysobjects.type Gtg0.Gc4 }  = '}]
  subs: {sysobjects.type ,Gtg0._virtualagg }
  cost: 83.58154
  I/O estimate : [
  rowcount=4.17777
   averagewidth=17
   pages=1
   prefetchpages=1
   lio=0 pio=0 cpu=79.26596
   total lio=8 total pio=1.00007 total cpu=425.7979
...if we have stats on type vs. the 1.88 when we don't.   Which points out that the uniqueness stats and selectivity are likely considered in the final cost of the group by.   In your case, the estimate of:
                I/O estimate : [
                        rowcount=7.388771
                        averagewidth=19
                        pages=1
                        prefetchpages=1
                        lio=0 pio=0 cpu=158985.8
                        total lio=385.3457 total pio=77.60534 total cpu=635943
                        tempdb=0
...is likely due to the column uniqueness and selectivity stats based on the @MID variable
Note that despite we now know the GROUP BY is only going to return a single row, we still don't change the plan.....we still hit the index in ascending fashion.   The reason why is that we don't assume (or should I say we don't make a special case) that the only aggregate is a max().   It could be count(), avg(), min() or a combination of which - any of could require reading every index row other than strictly min().   Could we do so??  Possibly.....however, arguable, the select max() without the group by is the more correct SQL to use....   We do (on the other hand) have special processing for scalaragg with max() as it does the backwards scan if max() is the only aggregate....if you do select min(), max() - then it does a forward scan even with scalaragg.   If you have just min(), we do a forward scan and short circuit after first row (as if select top 1)....

Similar Messages

  • I am having multiple issues with syncing my iphone calendar and outlook There are often 1 hour time differences in the entries on the 2 devices and sometimes events that have been amended are not updated on iphone I mostly enter items on my laptop

    I am having multiple issues with syncing my iphone calendar and outlook calendar on my laptop
    I mostly enter the original items on my laptop
    There are often 1 hour time differences in the entries on the 2 devices and sometimes events that have been amended are not updated on iphone

    This sounds like an error in Time Zone support. The time zone needs to be the same in Outlook as well as the phone.

  • Brush sometimes adds to existing path and sometimes starts new one?

    When drawing a path with the brush tool and then placing the brush back over an anchor point to continue the path, sometimes it continues the path and sometimes it deletes the path and just starts a new one. Why does it sometimes add to the existing path and sometimes start a new one?
    Thank you.

    If you have the path slected, wil edit the path, if it is not slected will create a new path. Aslo there si a distance withing 12 pixels is what I am set to. You can increase that valeu if you find you are getting too many new paths.

  • OpenReportingWebServiceConnection in the windowsupdate.log sometimes points to Microsoft URL and sometimes to WSUS server

    OpenReportingWebServiceConnection in the windowsupdate.log sometimes points to Microsoft URL and  sometimes to WSUS server.
    Why is that? WSUS reports are never up-to-date. if this is by design it sucks
    Also... it will take forever before clients are reporting to WSUS server..
    Kind regards / Met vriendelijke groet, IS Group Rob Mulder Kantoorautomatiseerder Wielingenstraat 8 T 0299 476 185 1441 ZR Purmerend F 0299 476 288 www.is.nl / www.isenterprise.com KvK Hoorn 36049256

    Hi Lawrence,
    I installed a new server (2012R2 standard), fully patched and only the WSUS role. Uninstalled the old one, used same database and moved the downloads. Installed a new PC (win 8.1 update 1), not in the domain so no policies. Changed the local update
    policy and point to the WSUS server.
    Still no luck...... WSUS Last Status Report keeps saying 'Not yet reported'.
    Could it be a network problem (VLAN, Firewall)??
    The log:
    2014-05-23 08:15:18:475  804 a08 IdleTmr Decremented idle timer priority operation counter to 0
    2014-05-23 08:15:18:872  804 7e4 Shutdwn Checking to see whether install at shutdown is appropriate
    2014-05-23 08:15:18:888  804 7e4 Shutdwn user declined update at shutdown
    2014-05-23 08:15:18:888  804 7e4 AU AU initiates service shutdown
    2014-05-23 08:15:18:888  804 7e4 AU ###########  AU: Uninitializing Automatic Updates  ###########
    2014-05-23 08:15:18:903  804 7e4 WuTask Uninit WU Task Manager
    2014-05-23 08:15:18:903  804 7e4 WuTask ScheduledInstallTaskHandler, setting scheduled install attempt time to 2014-05-25 06:09:51, using automatic maintenance:True.
    2014-05-23 08:15:19:169  804 7e4 Report CWERReporter finished handling 1 events. (00000000)
    2014-05-23 08:15:19:185  804 7e4 AU Earliest future timer found:
    2014-05-23 08:15:19:185  804 7e4 AU     Timer: 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782, Expires 2014-05-23 07:27:03, not idle-only, network-only
    2014-05-23 08:15:19:278  804 7e4 AU Earliest future timer found:
    2014-05-23 08:15:19:278  804 7e4 AU     Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2014-05-24 02:26:02, not idle-only, not network-only
    2014-05-23 08:15:19:560  804 7e4 Service *********
    2014-05-23 08:15:19:560  804 7e4 Service **  END  **  Service: Service exit [Exit code = 0x240001]
    2014-05-23 08:15:19:560  804 7e4 Service *************
    2014-05-23 08:15:51:285  760 5d8 Misc ===========  Logging initialized (build: 7.9.9600.17093, tz: +0200)  ===========
    2014-05-23 08:15:51:301  760 5d8 Misc   = Process: C:\Windows\system32\svchost.exe
    2014-05-23 08:15:51:301  760 5d8 Misc   = Module: c:\windows\system32\wuaueng.dll
    2014-05-23 08:15:51:254  760 5d8 Service *************
    2014-05-23 08:15:51:301  760 5d8 Service ** START **  Service: Service startup
    2014-05-23 08:15:51:301  760 5d8 Service *********
    2014-05-23 08:15:51:832  760 5d8 IdleTmr Non-AoAc machine.  Aoac operations will be ignored.
    2014-05-23 08:15:51:879  760 5d8 Agent   * WU client version 7.9.9600.17093
    2014-05-23 08:15:51:910  760 5d8 Agent WARNING: SleepStudyTracker: Machine is non-AOAC. Sleep study tracker disabled.
    2014-05-23 08:15:51:910  760 5d8 Agent   * Base directory: C:\Windows\SoftwareDistribution
    2014-05-23 08:15:51:910  760 5d8 Agent   * Access type: No proxy
    2014-05-23 08:15:51:910  760 5d8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 1.
    2014-05-23 08:15:51:910  760 5d8 Service UpdateNetworkState Ipv4, cNetworkInterfaces = 1.
    2014-05-23 08:15:51:910  760 5d8 Agent   * Network state: Connected
    2014-05-23 08:15:52:035  760 5d8 Service UpdateNetworkState Ipv6, cNetworkInterfaces = 1.
    2014-05-23 08:15:52:035  760 5d8 Service UpdateNetworkState Ipv4, cNetworkInterfaces = 1.
    2014-05-23 08:15:53:207  760 5d8 Agent ***********  Agent: Initializing global settings cache  ***********
    2014-05-23 08:15:53:207  760 5d8 Agent   * Endpoint Provider: 00000000-0000-0000-0000-000000000000
    2014-05-23 08:15:53:207  760 5d8 Agent   * WSUS server:
    http://is-wsus-001:8530
    2014-05-23 08:15:53:207  760 5d8 Agent   * WSUS status server:
    http://is-wsus-001:8530
    2014-05-23 08:15:53:207  760 5d8 Agent   * Target group: TEST
    2014-05-23 08:15:53:207  760 5d8 Agent   * Windows Update access disabled: No
    2014-05-23 08:15:53:457  760 5d8 WuTask WuTaskManager delay initialize completed successfully..
    2014-05-23 08:15:53:473  760 5d8 AU     Timer: 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782, Expires 2014-05-23 07:27:03, not idle-only, network-only
    2014-05-23 08:15:53:473  760 5d8 AU     Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2014-05-24 02:26:02, not idle-only, not network-only
    2014-05-23 08:15:53:473  760 5d8 AU     Timer: CF1ABEC6-7887-4964-BB93-B2E21B31CEC1, Expires 2014-05-24 06:06:34, not idle-only, not network-only
    2014-05-23 08:15:53:473  760 5d8 AU     Timer: 29A863E7-8609-4D1E-B7CD-5668F857F1DB, Expires 2014-05-24 06:06:32, not idle-only, not network-only
    2014-05-23 08:15:53:473  760 5d8 AU     Timer: E25CADF6-86A6-4569-BCDF-89BE66B0CA66, Expires 2014-05-26 06:08:09, not idle-only, not network-only
    2014-05-23 08:15:54:160  760 5d8 Report CWERReporter::Init succeeded
    2014-05-23 08:15:54:160  760 5d8 Agent ***********  Agent: Initializing Windows Update Agent  ***********
    2014-05-23 08:15:54:207  760 5d8 Agent   * Found 11 persisted download calls to restore
    2014-05-23 08:15:54:426  760 5d8 DnldMgr Download manager restoring 0 downloads
    2014-05-23 08:15:54:426  760 5d8 Agent   * Successfully loaded 11 persisted download calls.
    2014-05-23 08:15:54:457  760 5d8 AU ###########  AU: Initializing Automatic Updates  ###########
    2014-05-23 08:15:54:457  760 5d8 AU Additional Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782} with Approval type {Scheduled} added to AU services list
    2014-05-23 08:15:54:457  760 5d8 AU AIR Mode is disabled
    2014-05-23 08:15:54:457  760 5d8 AU   # Policy Driven Provider:
    http://is-wsus-001:8530
    2014-05-23 08:15:54:457  760 5d8 AU   # Detection frequency: 22
    2014-05-23 08:15:54:457  760 5d8 AU   # Target group: TEST
    2014-05-23 08:15:54:457  760 5d8 AU   # Approval type: Pre-install notify (Policy)
    2014-05-23 08:15:54:457  760 5d8 AU   # Auto-install minor updates: No (User preference)
    2014-05-23 08:15:54:457  760 5d8 AU   # ServiceTypeDefault: Service 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782 Approval type: (Scheduled)
    2014-05-23 08:15:54:457  760 5d8 AU   # Will interact with non-admins (Non-admins are elevated (User preference))
    2014-05-23 08:15:54:770  760 5d8 AU WARNING: Failed to get Wu Exemption info from NLM, assuming not exempt, error = 0x80070032
    2014-05-23 08:15:55:254  760 5d8 AU AU finished delayed initialization
    2014-05-23 08:15:55:254  760 5d8 AU Processing post-reboot results now.
    2014-05-23 08:15:55:270  760 5d8 AU Obtained Post reboot hr from Agent:8024000c
    2014-05-23 08:15:55:348  760 5d8 AU Additional Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782} with Approval type {Scheduled} added to AU services list
    2014-05-23 08:15:55:348  760 5d8 AU Triggering Offline detection (non-interactive)
    2014-05-23 08:15:55:348  760 5d8 AU Adding timer:
    2014-05-23 08:15:55:348  760 5d8 AU     Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2014-05-23 06:15:55, not idle-only, not network-only
    2014-05-23 08:15:55:394  760 5d8 AU Adding timer:
    2014-05-23 08:15:55:394  760 5d8 AU     Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2014-05-23 06:15:55, not idle-only, not network-only
    2014-05-23 08:15:55:394  760 5d8 AU #############
    2014-05-23 08:15:55:394  760 5d8 AU ## START ##  AU: Search for updates
    2014-05-23 08:15:55:394  760 5d8 AU #########
    2014-05-23 08:15:55:394  760 5d8 IdleTmr WU operation (CSearchCall::Init ID 12) started; operation # 73; does not use network; is at background priority
    2014-05-23 08:15:55:394  760 780 DnldMgr Asking handlers to reconcile their sandboxes
    2014-05-23 08:15:56:379  760 5d8 Report ***********  Report: Initializing static reporting data  ***********
    2014-05-23 08:15:56:379  760 5d8 Report   * OS Version = 6.3.9600.0.0.65792
    2014-05-23 08:15:56:379  760 5d8 Report   * OS Product Type = 0x00000004
    2014-05-23 08:15:56:394  760 5d8 Report   * Computer Brand = Hewlett-Packard
    2014-05-23 08:15:56:394  760 5d8 Report   * Computer Model = HP Compaq 8000 Elite SFF PC
    2014-05-23 08:15:56:394  760 5d8 Report   * Platform Role = 1
    2014-05-23 08:15:56:394  760 5d8 Report   * AlwaysOn/AlwaysConnected (AOAC) = 0
    2014-05-23 08:15:56:394  760 5d8 Report   * Bios Revision = 786G7 v01.02
    2014-05-23 08:15:56:394  760 5d8 Report   * Bios Name = Default System BIOS
    2014-05-23 08:15:56:394  760 5d8 Report   * Bios Release Date = 2009-10-22T00:00:00
    2014-05-23 08:15:56:394  760 5d8 Report   * Bios Sku Number = AU247AV
    2014-05-23 08:15:56:394  760 5d8 Report   * Bios Vendor = Hewlett-Packard
    2014-05-23 08:15:56:394  760 5d8 Report   * Bios Family = 103C_53307F
    2014-05-23 08:15:56:394  760 5d8 Report   * Bios Major Release = 1
    2014-05-23 08:15:56:394  760 5d8 Report   * Bios Minor Release = 2
    2014-05-23 08:15:56:394  760 5d8 Report   * Locale ID = 1033
    2014-05-23 08:15:56:754  760 5d8 Agent *** START ***  Queueing Finding updates [CallerId = AutomaticUpdates  Id = 12]
    2014-05-23 08:15:56:769  760 5d8 AU <<## SUBMITTED ## AU: Search for updates  [CallId = {0EA90D1A-5EFD-46BD-89A5-5BA637FD2BAB} ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}]
    2014-05-23 08:15:56:769  760 5d8 Agent SkipSelfUpdateCheck search flag set for serverId: 117CAB2D-82B1-4B5A-A08C-4D62DBEE7782
    2014-05-23 08:15:56:769  760 5d8 IdleTmr WU operation (CSearchCall::Init ID 13) started; operation # 75; does not use network; is at background priority
    2014-05-23 08:15:56:769  760 5d8 Agent *** START ***  Queueing Finding updates [CallerId = AutomaticUpdates  Id = 13]
    2014-05-23 08:15:56:769  760 5d8 AU <<## SUBMITTED ## AU: Search for updates  [CallId = {4BA76BFE-3776-4A2A-8F8F-046C551FC154} ServiceId = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}]
    2014-05-23 08:15:56:769  760 438 Agent ***  END  ***  Queueing Finding updates [CallerId = AutomaticUpdates  Id = 12]
    2014-05-23 08:15:56:769  760 444 Agent ***  END  ***  Queueing Finding updates [CallerId = AutomaticUpdates  Id = 13]
    2014-05-23 08:15:56:895  760 438 Agent *************
    2014-05-23 08:15:56:895  760 444 Agent *************
    2014-05-23 08:15:56:895  760 438 Agent ** START **  Agent: Finding updates [CallerId = AutomaticUpdates  Id = 12]
    2014-05-23 08:15:56:895  760 444 Agent ** START **  Agent: Finding updates [CallerId = AutomaticUpdates  Id = 13]
    2014-05-23 08:15:56:895  760 438 Agent *********
    2014-05-23 08:15:56:895  760 444 Agent *********
    2014-05-23 08:15:56:895  760 438 Agent   * Online = No; Ignore download priority = No
    2014-05-23 08:15:56:895  760 444 Agent   * Online = No; Ignore download priority = No
    2014-05-23 08:15:56:988  760 438 Agent   * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1
    or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2014-05-23 08:15:56:988  760 444 Agent   * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1
    or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2014-05-23 08:15:56:988  760 438 Agent   * ServiceID = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7} Managed
    2014-05-23 08:15:56:988  760 444 Agent   * ServiceID = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782} Third party service
    2014-05-23 08:15:56:988  760 438 Agent   * Search Scope = {Machine & All Users}
    2014-05-23 08:15:56:988  760 444 Agent   * Search Scope = {Machine & All Users}
    2014-05-23 08:15:56:988  760 438 Agent   * Caller SID for Applicability: S-1-5-18
    2014-05-23 08:15:57:066  760 444 Agent   * Caller SID for Applicability: S-1-5-18
    2014-05-23 08:16:00:691  760 444 Agent   * Added update {B8041E56-C00A-45F8-81FB-D73AFA411347}.1 to search result
    2014-05-23 08:16:00:754  760 444 Agent   * Added update {00563009-B9BF-43A4-8B4E-5ACE3172912B}.2 to search result
    2014-05-23 08:16:00:754  760 444 Agent   * Added update {10ABC605-BFEB-4C77-86F6-3E4B128DB8CE}.1 to search result
    2014-05-23 08:16:00:754  760 444 Agent   * Added update {5FFBBD0B-FE88-4891-A8AC-079773A2293C}.1 to search result
    2014-05-23 08:16:00:770  760 444 Agent   * Added update {7808BE23-84F0-4A32-8733-E7C007F163F3}.1 to search result
    2014-05-23 08:16:00:770  760 444 Agent   * Added update {5844AE0C-7736-4D29-A625-BE4C5B8F8913}.1 to search result
    2014-05-23 08:16:00:770  760 444 Agent Update {EE38AC4D-7401-43C8-99E3-6A29B5D40125}.1 is pruned out due to potential supersedence
    2014-05-23 08:16:00:770  760 444 Agent   * Added update {F9158DB5-472A-42E4-9011-8755FFD0E881}.1 to search result
    2014-05-23 08:16:00:770  760 444 Agent   * Added update {B668ABF0-E6EA-4A46-8295-F0B3EA7A2280}.1 to search result
    2014-05-23 08:16:00:770  760 444 Agent   * Added update {384F16CE-2C01-40C5-B4DF-77494AF5101B}.1 to search result
    2014-05-23 08:16:00:770  760 444 Agent   * Added update {622DDF33-E2CC-4001-8F24-58CF7DCA850C}.1 to search result
    2014-05-23 08:16:00:770  760 444 Agent   * Added update {27F89739-5050-4ED7-BB07-1B34FAD4A662}.1 to search result
    2014-05-23 08:16:00:770  760 444 Agent   * Added update {9A0D7060-5FF4-4842-AAC2-6B7F3EC4FAC3}.1 to search result
    2014-05-23 08:16:00:785  760 444 Agent   * Found 12 updates and 37 categories in search; evaluated appl. rules of 81 out of 122 deployed entities
    2014-05-23 08:16:00:785  760 444 Agent *********
    2014-05-23 08:16:00:785  760 444 Agent **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates  Id = 13]
    2014-05-23 08:16:00:785  760 444 Agent *************
    2014-05-23 08:16:00:820  760 444 IdleTmr WU operation (CSearchCall::Init ID 14) started; operation # 76; does not use network; is at background priority
    2014-05-23 08:16:00:898  760 444 Agent *************
    2014-05-23 08:16:00:898  760 444 Agent ** START **  Agent: Finding updates [CallerId = AutomaticUpdates  Id = 14]
    2014-05-23 08:16:00:898  760 444 Agent *********
    2014-05-23 08:16:00:898  760 444 Agent   * Online = No; Ignore download priority = No
    2014-05-23 08:16:00:913  760 444 Agent   * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1
    or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2014-05-23 08:16:00:913  760 444 Agent   * ServiceID = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782} Third party service
    2014-05-23 08:16:00:913  760 444 Agent   * Search Scope = {Current User}
    2014-05-23 08:16:00:913  760 444 Agent   * Caller SID for Applicability: S-1-5-21-3625400098-2596169022-3213286213-1003
    2014-05-23 08:16:01:429  760 444 Agent   * Added update {B8041E56-C00A-45F8-81FB-D73AFA411347}.1 to search result
    2014-05-23 08:16:02:070  760 444 Agent   * Added update {00563009-B9BF-43A4-8B4E-5ACE3172912B}.2 to search result
    2014-05-23 08:16:02:070  760 444 Agent   * Added update {10ABC605-BFEB-4C77-86F6-3E4B128DB8CE}.1 to search result
    2014-05-23 08:16:02:070  760 444 Agent   * Added update {5FFBBD0B-FE88-4891-A8AC-079773A2293C}.1 to search result
    2014-05-23 08:16:02:070  760 444 Agent   * Added update {7808BE23-84F0-4A32-8733-E7C007F163F3}.1 to search result
    2014-05-23 08:16:02:070  760 444 Agent   * Added update {5844AE0C-7736-4D29-A625-BE4C5B8F8913}.1 to search result
    2014-05-23 08:16:02:070  760 444 Agent Update {EE38AC4D-7401-43C8-99E3-6A29B5D40125}.1 is pruned out due to potential supersedence
    2014-05-23 08:16:02:070  760 444 Agent   * Added update {F9158DB5-472A-42E4-9011-8755FFD0E881}.1 to search result
    2014-05-23 08:16:02:070  760 444 Agent   * Added update {B668ABF0-E6EA-4A46-8295-F0B3EA7A2280}.1 to search result
    2014-05-23 08:16:02:070  760 444 Agent   * Added update {384F16CE-2C01-40C5-B4DF-77494AF5101B}.1 to search result
    2014-05-23 08:16:02:070  760 444 Agent   * Added update {622DDF33-E2CC-4001-8F24-58CF7DCA850C}.1 to search result
    2014-05-23 08:16:02:070  760 444 Agent   * Added update {27F89739-5050-4ED7-BB07-1B34FAD4A662}.1 to search result
    2014-05-23 08:16:02:070  760 444 Agent   * Added update {9A0D7060-5FF4-4842-AAC2-6B7F3EC4FAC3}.1 to search result
    2014-05-23 08:16:02:070  760 444 Agent   * Found 12 updates and 37 categories in search; evaluated appl. rules of 81 out of 122 deployed entities
    2014-05-23 08:16:02:070  760 444 Agent *********
    2014-05-23 08:16:02:070  760 444 Agent **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates  Id = 14]
    2014-05-23 08:16:02:070  760 444 Agent *************
    2014-05-23 08:16:02:070  760 444 IdleTmr WU operation (CSearchCall::Init ID 14, operation # 76) stopped; does not use network; is at background priority
    2014-05-23 08:16:02:085  760 444 IdleTmr WU operation (CSearchCall::Init ID 15) started; operation # 77; does not use network; is at background priority
    2014-05-23 08:16:02:085  760 444 Agent *************
    2014-05-23 08:16:02:085  760 444 Agent ** START **  Agent: Finding updates [CallerId = AutomaticUpdates  Id = 15]
    2014-05-23 08:16:02:085  760 444 Agent *********
    2014-05-23 08:16:02:085  760 444 Agent   * Online = No; Ignore download priority = No
    2014-05-23 08:16:02:085  760 444 Agent   * Criteria = "IsInstalled=0 and DeploymentAction='Installation' or IsPresent=1 and DeploymentAction='Uninstallation' or IsInstalled=1 and DeploymentAction='Installation' and RebootRequired=1
    or IsInstalled=0 and DeploymentAction='Uninstallation' and RebootRequired=1"
    2014-05-23 08:16:02:085  760 444 Agent   * ServiceID = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782} Third party service
    2014-05-23 08:16:02:085  760 444 Agent   * Search Scope = {Current User}
    2014-05-23 08:16:02:085  760 444 Agent   * Caller SID for Applicability: S-1-5-21-3625400098-2596169022-3213286213-1001
    2014-05-23 08:16:03:054  760 444 Agent   * Added update {B8041E56-C00A-45F8-81FB-D73AFA411347}.1 to search result
    2014-05-23 08:16:03:116  760 444 Agent   * Added update {10ABC605-BFEB-4C77-86F6-3E4B128DB8CE}.1 to search result
    2014-05-23 08:16:03:116  760 444 Agent   * Added update {5FFBBD0B-FE88-4891-A8AC-079773A2293C}.1 to search result
    2014-05-23 08:16:03:116  760 444 Agent   * Added update {7808BE23-84F0-4A32-8733-E7C007F163F3}.1 to search result
    2014-05-23 08:16:03:116  760 444 Agent   * Added update {5844AE0C-7736-4D29-A625-BE4C5B8F8913}.1 to search result
    2014-05-23 08:16:03:116  760 444 Agent Update {EE38AC4D-7401-43C8-99E3-6A29B5D40125}.1 is pruned out due to potential supersedence
    2014-05-23 08:16:03:116  760 444 Agent   * Added update {F9158DB5-472A-42E4-9011-8755FFD0E881}.1 to search result
    2014-05-23 08:16:03:132  760 444 Agent   * Added update {B668ABF0-E6EA-4A46-8295-F0B3EA7A2280}.1 to search result
    2014-05-23 08:16:03:132  760 444 Agent   * Added update {384F16CE-2C01-40C5-B4DF-77494AF5101B}.1 to search result
    2014-05-23 08:16:03:132  760 444 Agent   * Added update {622DDF33-E2CC-4001-8F24-58CF7DCA850C}.1 to search result
    2014-05-23 08:16:03:132  760 444 Agent   * Added update {27F89739-5050-4ED7-BB07-1B34FAD4A662}.1 to search result
    2014-05-23 08:16:03:132  760 444 Agent   * Added update {9A0D7060-5FF4-4842-AAC2-6B7F3EC4FAC3}.1 to search result
    2014-05-23 08:16:03:132  760 444 Agent   * Found 11 updates and 37 categories in search; evaluated appl. rules of 81 out of 122 deployed entities
    2014-05-23 08:16:03:132  760 444 Agent *********
    2014-05-23 08:16:03:132  760 444 Agent **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates  Id = 15]
    2014-05-23 08:16:03:132  760 444 Agent *************
    2014-05-23 08:16:03:132  760 444 IdleTmr WU operation (CSearchCall::Init ID 15, operation # 77) stopped; does not use network; is at background priority
    2014-05-23 08:16:03:132  760 444 IdleTmr WU operation (CSearchCall::Init ID 13, operation # 75) stopped; does not use network; is at background priority
    2014-05-23 08:16:03:132  760 484 AU >>##  RESUMED  ## AU: Search for updates [CallId = {4BA76BFE-3776-4A2A-8F8F-046C551FC154} ServiceId = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}]
    2014-05-23 08:16:03:148  760 484 AU   # 12 updates detected
    2014-05-23 08:16:03:148  760 484 AU #########
    2014-05-23 08:16:03:163  760 484 AU ##  END  ##  AU: Search for updates  [CallId = {4BA76BFE-3776-4A2A-8F8F-046C551FC154} ServiceId = {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}]
    2014-05-23 08:16:03:163  760 484 AU #############
    2014-05-23 08:16:08:679  760 438 Agent   * Added update {8427071A-DA80-48C3-97DE-C9C528F73A2D}.1 to search result
    2014-05-23 08:16:08:742  760 438 Agent   * Found 1 updates and 74 categories in search; evaluated appl. rules of 1114 out of 1607 deployed entities
    2014-05-23 08:16:08:742  760 438 Agent *********
    2014-05-23 08:16:08:742  760 438 Agent **  END  **  Agent: Finding updates [CallerId = AutomaticUpdates  Id = 12]
    2014-05-23 08:16:08:742  760 438 Agent *************
    2014-05-23 08:16:08:742  760 438 IdleTmr WU operation (CSearchCall::Init ID 12, operation # 73) stopped; does not use network; is at background priority
    2014-05-23 08:16:08:742  760 484 AU >>##  RESUMED  ## AU: Search for updates [CallId = {0EA90D1A-5EFD-46BD-89A5-5BA637FD2BAB} ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}]
    2014-05-23 08:16:08:742  760 484 AU   # 1 updates detected
    2014-05-23 08:16:08:742  760 484 AU WARNING: AU ignoring update during offline scan:
    2014-05-23 08:16:08:742  760 484 AU #########
    2014-05-23 08:16:08:742  760 484 AU ##  END  ##  AU: Search for updates  [CallId = {0EA90D1A-5EFD-46BD-89A5-5BA637FD2BAB} ServiceId = {3DA21691-E39D-4DA6-8A4B-B43877BCB1B7}]
    2014-05-23 08:16:08:742  760 484 AU #############
    2014-05-23 08:16:08:742  760 484 AU All AU searches complete.
    2014-05-23 08:16:08:742  760 484 AU Adding timer:
    2014-05-23 08:16:08:742  760 484 AU     Timer: 31DA7559-FE27-4810-8FF6-987195B1FD98, Expires 2014-05-24 02:26:02, not idle-only, not network-only
    2014-05-23 08:16:08:742  760 484 AU   # Publishing WNF Per user update count event Count: 11 SID {S-1-5-21-3625400098-2596169022-3213286213-1003} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-05-23 08:16:08:804  760 484 AU   # Publishing WNF Per user update count event Count: 11 SID {S-1-5-21-3625400098-2596169022-3213286213-1001} Service {117CAB2D-82B1-4B5A-A08C-4D62DBEE7782}
    2014-05-23 08:24:06:607  760 5d8 AU ReAttemptDownloadsAsUserIfNecessary, No calls in download progress.
    2014-05-23 08:24:06:623  760 5d8 AU IsPerUserUpdateInstallableForAnyLoggedOnUser, found at least 1 logged on user for which the update 10ABC605-BFEB-4C77-86F6-3E4B128DB8CE, revision 1 is applicable
    2014-05-23 08:24:06:623  760 5d8 AU SchedulePerUserUpdateInstallOnUserLogonIfNeeded, per user update install scheduled for logged on user.
    Kind regards / Met vriendelijke groet, IS Group Rob Mulder Kantoorautomatiseerder Wielingenstraat 8 T 0299 476 185 1441 ZR Purmerend F 0299 476 288 www.is.nl / www.isenterprise.com KvK Hoorn 36049256

  • Problem description: Computer takes a long time to fire up. Spinning ball is seen during start up, sometimes when login dialog box, and sometimes after entering login password. My mac freeze often, especially when using Lightroom-.

    Problem description:
    Computer takes a long time to fire up. Spinning ball is seen during start up, sometimes when login dialog box, and sometimes after entering login password. My mac freeze often, especially when using Lightroom….     Help is much appreciated!
    EtreCheck version: 2.0.11 (98)
    Report generated 3. november 2014 kl. 01.23.41 CET
    Hardware Information: ℹ️
      MacBook Pro (13-inch, Mid 2010) (Verified)
      MacBook Pro - model: MacBookPro7,1
      1 2.4 GHz Intel Core 2 Duo CPU: 2-core
      4 GB RAM Upgradeable
      BANK 0/DIMM0
      2 GB DDR3 1067 MHz ok
      BANK 1/DIMM0
      2 GB DDR3 1067 MHz ok
      Bluetooth: Old - Handoff/Airdrop2 not supported
      Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
      NVIDIA GeForce 320M - VRAM: 256 MB
      Color LCD 1280 x 800
    System Software: ℹ️
      OS X 10.10 (14A389) - Uptime: 2:49:19
    Disk Information: ℹ️
      Samsung SSD 840 EVO 500GB disk0 : (500,11 GB)
      S.M.A.R.T. Status: Verified
      EFI (disk0s1) <not mounted> : 210 MB
      Macintosh HD (disk0s2) /  [Startup]: 499.25 GB (260.35 GB free)
      Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
      MATSHITADVD-R   UJ-898 
    USB Information: ℹ️
      Apple Inc. Built-in iSight
      Apple Internal Memory Card Reader
      Apple Inc. BRCM2046 Hub
      Apple Inc. Bluetooth USB Host Controller
      Apple Computer, Inc. IR Receiver
      Apple Inc. Apple Internal Keyboard / Trackpad
    Configuration files: ℹ️
      /etc/sysctl.conf - Exists
      /etc/hosts - Count: 15
    Gatekeeper: ℹ️
      Mac App Store and identified developers
    Kernel Extensions: ℹ️
      /Applications/IPVanish.app
      [not loaded] foo.tap (1.0) Support
      [not loaded] foo.tun (1.0) Support
      /Applications/LaCie Desktop Manager.app
      [not loaded] com.LaCie.ScsiType00 (1.2.13 - SDK 10.5) Support
      [not loaded] com.jmicron.driver.jmPeripheralDevice (2.0.4) Support
      [not loaded] com.lacie.driver.LaCie_RemoteComms (1.0.1 - SDK 10.5) Support
      [not loaded] com.oxsemi.driver.OxsemiDeviceType00 (1.28.13 - SDK 10.5) Support
      /Applications/Private Eye.app
      [loaded] com.radiosilenceapp.nke.PrivateEye (1 - SDK 10.7) Support
      /Library/Application Support/HASP/kexts
      [not loaded] com.aladdin.kext.aksfridge (1.0.2) Support
      /System/Library/Extensions
      [loaded] com.hzsystems.terminus.driver (4) Support
      [not loaded] com.nvidia.CUDA (1.1.0) Support
      [not loaded] com.roxio.BluRaySupport (1.1.6) Support
      [not loaded] com.sony.filesystem.prodisc_fs (2.3.0) Support
      [not loaded] com.sony.protocol.prodisc (2.3.0) Support
      /Users/[redacted]/Library/Services/ToastIt.service/Contents/MacOS
      [not loaded] com.roxio.TDIXController (2.0) Support
    Startup Items: ℹ️
      CUDA: Path: /System/Library/StartupItems/CUDA
      ProTec6b: Path: /Library/StartupItems/ProTec6b
      Startup items are obsolete and will not work in future versions of OS X
    Launch Agents: ℹ️
      [not loaded] com.adobe.AAM.Updater-1.0.plist Support
      [running] com.adobe.AdobeCreativeCloud.plist Support
      [loaded] com.adobe.CS5ServiceManager.plist Support
      [running] com.digitalrebellion.EditmoteListener.plist Support
      [loaded] com.google.keystone.agent.plist Support
      [loaded] com.intego.backupassistant.agent.plist Support
      [running] com.mcafee.menulet.plist Support
      [invalid?] com.mcafee.reporter.plist Support
      [loaded] com.nvidia.CUDASoftwareUpdate.plist Support
      [loaded] com.oracle.java.Java-Updater.plist Support
      [running] com.orbicule.WitnessUserAgent.plist Support
      [loaded] com.xrite.device.softwareupdate.plist Support
    Launch Daemons: ℹ️
      [loaded] com.adobe.fpsaud.plist Support
      [invalid?] com.adobe.SwitchBoard.plist Support
      [running] com.aladdin.aksusbd.plist Support
      [failed] com.aladdin.hasplmd.plist Support
      [running] com.edb.launchd.postgresql-8.4.plist Support
      [loaded] com.google.keystone.daemon.plist Support
      [running] com.intego.BackupAssistant.daemon.plist Support
      [loaded] com.ipvanish.helper.openvpn.plist Support
      [loaded] com.ipvanish.helper.pppd.plist Support
      [invalid?] com.mcafee.ssm.ScanFactory.plist Support
      [invalid?] com.mcafee.ssm.ScanManager.plist Support
      [running] com.mcafee.virusscan.fmpd.plist Support
      [loaded] com.mvnordic.mvlicensehelper.offline.plist Support
      [loaded] com.oracle.java.Helper-Tool.plist Support
      [loaded] com.oracle.java.JavaUpdateHelper.plist Support
      [running] com.orbicule.witnessd.plist Support
      [loaded] com.radiosilenceapp.nke.PrivateEye.plist Support
      [running] com.xrite.device.xrdd.plist Support
    User Launch Agents: ℹ️
      [loaded] com.adobe.AAM.Updater-1.0.plist Support
      [loaded] com.adobe.ARM.[...].plist Support
      [invalid?] com.digitalrebellion.SoftwareUpdateAutoCheck.plist Support
      [loaded] com.facebook.videochat.[redacted].plist Support
      [loaded] com.macpaw.CleanMyMac2Helper.scheduledScan.plist Support
      [loaded] com.macpaw.CleanMyMac2Helper.trashWatcher.plist Support
      [running] com.spotify.webhelper.plist Support
    User Login Items: ℹ️
      Skype Program (/Applications/Skype.app)
      GetBackupAgent Program (/Users/[redacted]/Library/Application Support/BeLight Software/Get Backup 2/GetBackupAgent.app)
      PhoneViewHelper Program (/Users/[redacted]/Library/Application Support/PhoneView/PhoneViewHelper.app)
      EarthDesk Core UNKNOWN (missing value)
      Dropbox Program (/Applications/Dropbox.app)
      AdobeResourceSynchronizer ProgramHidden (/Applications/Adobe Reader.app/Contents/Support/AdobeResourceSynchronizer.app)
      i1ProfilerTray Program (/Applications/i1Profiler/i1ProfilerTray.app)
    Internet Plug-ins: ℹ️
      Google Earth Web Plug-in: Version: 6.0 Support
      Default Browser: Version: 600 - SDK 10.10
      AdobeAAMDetect: Version: AdobeAAMDetect 2.0.0.0 - SDK 10.7 Support
      FlashPlayer-10.6: Version: 15.0.0.189 - SDK 10.6 Support
      AdobePDFViewerNPAPI: Version: 11.0.09 - SDK 10.6 Support
      Silverlight: Version: 5.1.10411.0 - SDK 10.6 Support
      Flash Player: Version: 15.0.0.189 - SDK 10.6 Support
      QuickTime Plugin: Version: 7.7.3
      iPhotoPhotocast: Version: 7.0
      SiteAdvisor: Version: 2.0 - SDK 10.1 Support
      AdobePDFViewer: Version: 11.0.09 - SDK 10.6 Support
      GarminGPSControl: Version: 3.0.1.0 Release - SDK 10.4 Support
      JavaAppletPlugin: Version: Java 7 Update 71 Check version
    User Internet Plug-ins: ℹ️
      Google Earth Web Plug-in: Version: 6.2 Support
      F5 Inspection Host Plugin: Version: 6031.2010.0122.1 Support
      f5 sam inspection host plugin: Version: 7000.2010.0602.1 Support
    Safari Extensions: ℹ️
      Facebook Cleaner
      Better Facebook
      SiteAdvisor
      Incognito
      Bing Highlights
      YouTube5
      AdBlock
      YoutubeWide
    Audio Plug-ins: ℹ️
      DVCPROHDAudio: Version: 1.3.2
    3rd Party Preference Panes: ℹ️
      CUDA Preferences  Support
      EarthDesk  Support
      Editmote  Support
      Flash Player  Support
      FUSE for OS X (OSXFUSE)  Support
      Growl  Support
      Java  Support
      Witness  Support
    Time Machine: ℹ️
      Time Machine not configured!
    Top Processes by CPU: ℹ️
          13% taskgated
          12% WindowServer
          1% WitnessUserAgent
          1% sysmond
          1% Activity Monitor
    Top Processes by Memory: ℹ️
      327 MB com.apple.WebKit.WebContent
      137 MB softwareupdated
      94 MB Safari
      82 MB VShieldScanner
      82 MB Dock
    Virtual Memory Information: ℹ️
      65 MB Free RAM
      1.58 GB Active RAM
      1.54 GB Inactive RAM
      647 MB Wired RAM
      2.95 GB Page-ins
      260 MB Page-outs

    You have SCADS of extensions and the things running. McAfee, Intego, Orbicule, CleanMyMac, and others I've not ever even heard of. My first recommendation would be to remove all of these and see if things improve.

  • Sometimes it sleeps...and sometimes it doesn't

    Hey all,
    For some reason my computer's been acting a little wonky when trying to sleep. After a restart, when I put the computer to sleep it'll be fine. It'll just do as it does, go to sleep. After prolonged uptime (maybe a week), when I close the lid it will get halfway there (speakers shut off, USB devices shut off), but then I hear the CD drive whir up and everything illuminates back on (imagine as if I removed a USB drive while it was under sleep...).
    The funny thing is, sometimes it will go back to sleep after coming back alive, and sometimes it'll just be...stuck. This isn't how sleep is supposed to work...what can I do? Reset PMU and all that? Or am I doing something wrong? I thought quitting iTunes and closing any programs using files from my (always attached) flash drive would help remedy the problem but it doesn't...

    Ry_Mac wrote:
    recently when I've been trying to put the iMac to sleep it wakes itself instantly, so if I use the Apple Remote by holding down the play button it'll sleep for a few seconds before waking. I'll use the power button on the back of the Mac, same thing happens, sleeps for a few seconds before waking up, I'll do it on the main toolbar at the top by clicking the apple logo and selecting sleep, same thing. Sometimes it sleeps and doesn't wake but recently it's been taking me a few attempts before it finally sleeps.
    try if _*resetting the System Management Controller SMC*_ helps.
    Also it could be related or it could have nothing to do with the Mac itself but also recently Airport struggles to stay connected to my home wireless TalkTalk internet modem. For the majority of the time it stays connected but every so often it looses its signal. Now my iMac is upstairs and the modem is downstairs but again, I've been using it like this for months and it's never been an issue before.
    you might be suffering from _*wireless interference*_.
    perhaps one of your neighbor's (new) wireless networks is interfering with yours. download iStumbler (free) or AirRadar (it has a trial period) and note the channels other networks in your vicinity are broadcasting on. *change the channel(s) of your network as far away as possible from those*.
    JGG

  • Sometimes Firefox 5 opens perfectly and sometimes it opens and stuff is missing from the toolbars and NOTHING appears on screen even though the address appears and it says done.

    I a running Vista 64 bit on a HP touchsmart relatively new computer. I have been using Firefox 3 and have had nothing but troubles since I downloaded 4. Finally got that to work and now that I have downloaded 5 sometimes it works perfectly and sometimes when I open it seems to load up another version and nothing appears in the screen area even though it says in the address bar it is at the home screen (or any other site I go to). If I completely close out Firefox and my AT&T communication Manager dial up modem and then reopen it will sometimes then open the proper version perfectly - any thoughts??

    Well since you asked, On my old system which I am still using, I experience
    the blank frame on a regular basis but usually only when I have about 20 or more instances open with more then 850 meg of memory in use by firefox 25.0.1, also it tends to crash when I approach a gig in memory usage. I never complained about that since that system is an older dual core that was in place upgraded from vista to win7 pro so it is a special case that may not be good for evaluation. I plan to move to the Lenovo as soon as I am confident it is stable then I will rack it out with similar usage
    and report any meaningful information.
    Thanks for asking.

  • Since Mountain Lion install, sometimes Safari becomes very sluggish and sometimes unresponsive, especially when it is doing autocorrect.

    I have had Safari crash in one instance. And, other times it is very, very sluggish while typing a post to Facebook. I had Safari become unresponsive this afternoon, and eventually the whole system became unresponsive. I ended up having to do a power down and power up to clear the system.
    Anyone got some suggestions?  This behavior came about since the 10.8.1 update.

    The fact that the Time and Date settings are messed up tells me a totally different battery needs replacing.   There are in fact two batteries on every notebook.  The one that is a regular charging battery that frequently lasts anywhere from a year and a half to longer.  But then there is a battery that controls the system clock known as the PRAM battery.  It is this latter battery which also speaks to the firmware of the computer.    That's one which often starts losing its charge after 4 years.   You are closed to that stage now, and depending on the use of your computer, you might speed its demise.  You have to understand how all batteries work on the computers from http://www.apple.com/batteries/   Apple can replace the PRAM battery, and verify your firmware is correctly up to date.    By the way, I agree making a clone is preferable to Time Machine, as you can't really boot from a Time Machine backup.  Until your PRAM battery is replaced I think you will continue to have problems.

  • The headphone jack on my iPod Touch Gen 2 is intermittent. I get sound sometimes out of one channel and sometimes both depending on how I hold the headphone jack.  Is this a costly repair?

    The headphone jack on my iPod Touch is intermittent.  I gat sound out of one channel or both depending on how I hold the jack.   It is making intermittent contact.  Is this a costly repair by Apple?   Can I do this repair myself?
    Thanks

    Here is a third-pary place. Google for more.
    iPhone Repair, Service & Parts: iPod Touch, iPad, MacBook Pro Screens
    Apple will only exchange your iPod for a refurbished one for:
    Apple - Support - iPod - Repair pricing
    Here are instructions for doing it yourself
    iPod Touch Repair - iFixit

  • HP G72 display problems...sometimes very grainy...and sometimes no display at all.

    Display is grainy sometimes with a blue tint.  Most of the time it will not come on at all.  When an External monitor is hooked up it looks and works great.  Display problem itself or video card problem??

    Hello , Thank you for visiting the HP Forums! A great place where you can find solutions for your issues, with help from the community! I came across your issue about the display, and wanted to help! If the notebook is working on the external monitor, then perhaps the display cable in your notebook is loose, or needs to be reconnected.  If you are comfortable with the process, you can take the notebook apart, to check if the display cable is properly secure.  You can use the following document to assist you, if needed:HP G72 Notebook PC - Maintenance and Service Guide (Chapter 4, Page 69-70). Here is an additional document, that may be helpful: HP Notebook PCs - Troubleshooting a Notebook LCD Panel Issue (Windows 8/8.1, 7) If you are not comfortable with that process, then you may consider contacting HP Phone Support for additional options.  Please use the following http://www.hp.com/contacthp and create a case for your issue and contact HP. If you live outside the US/Canada, please click the link below to get the contact information for your region.
    http://www8.hp.com/us/en/contact-hp/ww-phone-assist.html Please let me know if this information was helpful by clicking the thumbs up below.
    Regards!

  • When I send a message to the same iPhone user in the UK, sometimes it sends an iMessage and sometimes it sends it as a text.  Anyone know why?

    It always seems to happen after the fact, also.  I'll check it later and it shows up green instead of blue.  And, it doesn't seem to matter if I'm connected to wifi or not.  What can I do to make sure they are all iMessages?  Or at least so I can make the decision not to send?

    I believe that if you turn off "Send As SMS: off in the settings, it should only attempt to send as an iMessage and should fail if iMessage is unavailable. It tries to send an iMessage a few times and then if unable, it will send as an SMS if you have that turned on.

  • I have Lion and iCloud.  There are two very annoying problems.  mFirst, in the middle of writing or research the window gets yanked to the right.  Sometimes it can be retrieved and sometimes it can't.  sec on, in the course of research on Safari, or work

    I have recently upgraded to Lion and iCloud.  There are two very annoying quirks that i don't know how to fix:
    1-When working with word, documents or emails in the middle of a sequence the picture or window suddenly is yanked off the screen to the right.  More often than not it can't be retrieved.  This happens often
    2-In the same mode as in #1 above the print size will suddenly increase maybe by a factor of 3x or 4x.  it happens spontaneously.
    3-There are many other problems with the upgrade:
         -With sequence emails the secondary emails are not printed.  When one tries to open those emails it often fails.
         -The new address book format is crap.  it is very difficult to go from single listings to group listings and back.
    It's obviousto me the Apple software designers are not users.
    So how can i fix #1 & 2 above.

    > When working with word, documents or emails in the middle of a sequence
    > the picture or window suddenly is yanked off the screen to the right.
    Microsoft Word?  What version and service pack?
    Microsoft Office 2011 SP2 includes Word version 14.2.2.  Some Office 2011 updates addressed problems with Lion.

  • Iphone 6 128 camera freezes...sometimes with a blurred image and sometimes just freezes black.  I have to reboot phone to get past the frozen camera screen.  It happens several times a day.

    I go to take a photo and the camera either shows repetitive blurred image or is just black.   The entire iPhone 6 128 is locked in the camera freeze.  The only way to use the phone is to shut off power and reboot.  Is anyone having this problem on the iPhone 6?

    i have been having the same problem today. I have however narrowed it down further: when I am zoooming in on a shot, take the shot, then slide to another mode like from a still shot to video  (without uzooming),= freezing. I am taking my iPhone back to apple to see what they say if I don't an answer on the forums here. Not happy with this btw!

  • Is it possible to prevent the history from moving entries up to the top of the list when a site is revisited, and why does it only do this sometimes?

    * Sometimes the history appears to compile previous visits to a site into only the entry for the most recent visit, but other times it does not. In other words, sometimes when a site is re-visited, the history will move a previous visit to that site out of the existing chronological sequence and put it at the top. What makes the difference in whether it does this or not, and is there any way to prevent the consolidating of information this way? I am using using Firefox v.27, Windows 7.
    I would like things to be in true chronological order for the possibility of accurately tracking previous activity, and for that purpose do not mind having the duplicate entries. Possible successful solutions might be in areas 1-3 below, and I would appreciate any suggestions.
    1. Are there any preferences in 'about:config' that apply to this? I could not find any.
    2. Are there other ways of getting this type of record, e.g. some other computer log, program, or add-on?
    3. What are some of the most accurate records of one's own internet browsing activity that one can make or obtain, with or without the browser's history function, if anyone knows?
    Thanks.

    Firefox normally only shows the most recent visit to a specific URL, so you would have to do extra effort to make older visits visible (place:sort=4&type=1).
    *https://developer.mozilla.org/en/Places_query_URIs
    See also:
    *http://www.nirsoft.net/utils/mozilla_history_view.html

  • HT4623 why does my ipad kick me out of FB and sometimes to the 'settings' page or sometimes to the desk top, for what reason?     I have 50.8 GB of capacity available; it is version 5.1.1 and model MC497LL.   it is WIFI and internet via AT&T???  Can you h

    Can anyone help me?  Why does my ipad kick me out of FB?  Sometimes to the 'settings' page and sometimes to the desk top?  I would like to know why this happens and what I can check or change to make it stop.   I have 50.8 GB of capacity available; it is version IOS 5.1.1; model MC497LL.  It is WIFI and internet via AT&T?   Can anyone give me some clues on what to do; or change in settings???  Thank you very much! 

    Please read this whole message before doing anything.
    This procedure is a diagnostic test. It’s unlikely to solve your problem. Don’t be disappointed when you find that nothing has changed after you complete it.
    The purpose of the test is to determine whether the problem is caused by third-party software that loads automatically at startup or login, by a peripheral device, by a font conflict, or by corruption of the file system or of certain system caches.
    Disconnect all wired peripherals except those needed for the test, and remove all aftermarket expansion cards, if applicable. Start up in safe mode and log in to the account with the problem. You must hold down the shift key twice: once when you turn on the computer, and again when you log in.
    Note: If FileVault is enabled, or if a firmware password is set, or if the startup volume is a Fusion Drive or a software RAID, you can’t do this. Ask for further instructions.
    Safe mode is much slower to start up and run than normal, with limited graphics performance, and some things won’t work at all, including sound output and Wi-Fi on certain models. The next normal startup may also be somewhat slow.
    The login screen appears even if you usually login automatically. You must know your login password in order to log in. If you’ve forgotten the password, you will need to reset it before you begin.
    Test while in safe mode. Same problem?
    After testing, restart as usual (not in safe mode) and verify that you still have the problem. Post the results of the test.

Maybe you are looking for

  • Satellite P30: Cannot get picture on TV

    I have a Sat P30 and would like to view on TV rather than lcd screen for dvd viewing etc. I have connected via 4pin s-video - 4pin s-video into scart socket (as tv doesn't have s video connection) and connected sound into scart as well (scart has svi

  • In FCE why is the video and audio separating

    all of a sudden why is the audio and video splitting when I drop the clip in the time line in FCE HD

  • Connection explorer is not visible

    I installed OWB 10g R2. First time when I opened Design Center and connected to design repository, the connection explorer window was visible. But yesterday after login, I am not able to see connection explorer window. I tried checking/uncheck connec

  • How can I resize/move border box to transform (NOT crop) photos in PSE11on a touchpad computer??

    I have switched my "mouse" over to the number keypad like it says to do for the touchpad computer.  I go to tranform image size and the outline surrounding the photo only moves up/down or side-to-side.  How do I get the outline to move at the corners

  • Prerequisites for SAP CRM

    Dear Friends, I need your valuable suggestions.  Briefly, about my background.  I have over 13years of IT experience on Mainframes with Insurance domain(Auto, Home, Commercial etc.,).  Currently working as Project Manager.  I am planning jump onto SA