Query is running very slow

INSERT INTO IHUB.TMP_SUPPLIES_PO
NEW_SCHEDULE_DATE,
ORDER_TYPE,
NEW_ORDER_QUANTITY,
NEW_ORDER_PLACEMENT_DATE,
FIRM_PLANNED_TYPE,
LINE_ID,
ORDER_NUMBER,
SUBINVENTORY_CODE,
ITEM_NAME,
ORGANIZATION_CODE,
SUPPLIER_NAME,
SUPPLIER_SITE_CODE,
COMMENTS,
ORIGINAL_NEED_BY_DATE,
PROMISED_DATE,
NEED_BY_DATE,
ACCEPTANCE_REQUIRED_FLAG,
UOM_CODE,
SR_INSTANCE_CODE,
DELETED_FLAG,
LAST_UPDATE_DATE,
LAST_UPDATED_BY,
CREATION_DATE,
CREATED_BY,
LAST_UPDATE_LOGIN,
REQUEST_ID,
PROGRAM_APPLICATION_ID,
PROGRAM_ID,
PROGRAM_UPDATE_DATE,
PROCESS_FLAG
SELECT DISTINCT F.DUE_DT AS NEW_SCHEDULE_DATE,
1 AS ORDER_TYPE,
( F.QTY_PO_STD
- NVL(xx_psft_to_ihub_pkg_rj.get_rcv_qty_supplies_po (F.BUSINESS_UNIT, F.PO_ID, F.LINE_NBR, F.SCHED_NBR, F.DISTRIB_LINE_NUM),0)
+ NVL(xx_psft_to_ihub_pkg_rj.get_rtv_qty_supplies_po (F.BUSINESS_UNIT, F.PO_ID, F.LINE_NBR, F.SCHED_NBR, F.DISTRIB_LINE_NUM),0)
) AS NEW_ORDER_QUANTITY,
F.PO_DT AS NEW_ORDER_PLACEMENT_DATE,
CASE WHEN F.FROZEN_FLG = 'N'
THEN 2
ELSE 1
END AS FIRM_PLANNED_TYPE,
1 AS LINE_ID,
F.BUSINESS_UNIT
|| ':'
|| F.PO_ID
|| ':'
|| F.LINE_NBR
|| ':'
|| F.SCHED_NBR
|| ':'
|| F.DISTRIB_LINE_NUM AS ORDER_NUMBER,
NULL AS SUBINVENTORY_CODE,
F.INV_ITEM_ID AS ITEM_NAME,
F.BUSINESS_UNIT_IN AS ORGANIZATION_CODE,
H.NAME1 || ':' || F.VENDOR_ID as SUPPLIER_NAME,
F.VNDR_LOC AS SUPPLIER_SITE_CODE,
NULL AS COMMENTS,
G.ORIG_PROM_DT AS ORIGINAL_NEED_BY_DATE,
F.DUE_DT AS PROMISED_DATE,
F.DUE_DT AS NEED_BY_DATE,
'N' AS ACCEPTANCE_REQUIRED_FLAG,
F.UNIT_OF_MEASURE AS UOM_CODE,
'P',
2,
SYSDATE,
SYSDATE,
1173,
58957,
410496,
724,
56364,
sysdate,
1
FROM SYSADM.PS_PL_ITEM_ATTRIB@FSUPGCLINK A,
SYSADM.PS_BU_ITEMS_INV@FSUPGCLINK B,
SYSADM.PS_MASTER_ITEM_TBL@FSUPGCLINK C,
SYSADM.PS_PL_GROUP_IN@FSUPGCLINK E,
SYSADM.PS_PL_PO_DIST_VW2@FSUPGCLINK F,
SYSADM.PS_PO_LINE_SHIP@FSUPGCLINK G,
SYSADM.PS_VENDOR@FSUPGCLINK H
WHERE 1=1
AND E.BU_GROUP = 'ASCP'
AND A.PLANNED_BY <> '4'
AND A.BUSINESS_UNIT = B.BUSINESS_UNIT
AND A.INV_ITEM_ID = B.INV_ITEM_ID
AND B.ITM_STATUS_CURRENT < '4'
AND B.INV_ITEM_ID = C.INV_ITEM_ID
AND C.ITM_STATUS_CURRENT < '4'
AND C.SETID =
(SELECT D.SETID
FROM SYSADM.PS_SET_CNTRL_REC@FSUPGCLINK D
WHERE D.RECNAME = 'MASTER_ITEM_TBL'
AND D.SETCNTRLVALUE = A.BUSINESS_UNIT
AND A.BUSINESS_UNIT = E.BUSINESS_UNIT
AND A.BUSINESS_UNIT = F.BUSINESS_UNIT_IN
AND A.INV_ITEM_ID = F.INV_ITEM_ID
AND F.PO_STATUS <> 'C'
AND F.BUSINESS_UNIT = G.BUSINESS_UNIT
AND F.PO_ID = G.PO_ID
AND F.LINE_NBR = G.LINE_NBR
AND F.SCHED_NBR = G.SCHED_NBR
AND F.VENDOR_SETID = H.SETID
AND F.VENDOR_ID = H.VENDOR_ID
AND ( F.QTY_PO_STD
- NVL(xx_psft_to_ihub_pkg_rj.get_rcv_qty_supplies_po (F.BUSINESS_UNIT, F.PO_ID, F.LINE_NBR, F.SCHED_NBR, F.DISTRIB_LINE_NUM),0)
+ NVL(xx_psft_to_ihub_pkg_rj.get_rtv_qty_supplies_po (F.BUSINESS_UNIT, F.PO_ID, F.LINE_NBR, F.SCHED_NBR, F.DISTRIB_LINE_NUM),0)
) > 0

Yes here is the execution plan for select statement I have already removed distict from the select. Also I am using oracle databases 11.2.0.2
Execution Plan
| Id | Operation | Name | Rows | Bytes | Cost (%CPU)| Inst |IN-OUT|
| 0 | SELECT STATEMENT | | 1 | 287 | 2041 (2)| | |
|* 1 | COUNT STOPKEY | | | | | | |
|* 2 | FILTER | | | | | | |
|* 3 | FILTER | | 3 | 27 | 1 (0)| | |
| 4 | REMOTE | | | | | FSUPG~ | R->S |
| 5 | REMOTE | PS_SET_CNTRL_REC | 1 | 25 | 3 (0)| FSUPG~ | R->S |
Predicate Information (identified by operation id):
1 - filter(ROWNUM<=3)
2 - filter("C"."SETID"= (SELECT "D"."SETID" FROM "D" WHERE
"D"."RECNAME"='MASTER_ITEM_TBL' AND "D"."SETCNTRLVALUE"=:B1))
3 - filter("F"."QTY_PO_STD"-NVL("XX_PSFT_TO_IHUB_PKG_RJ"."GET_RCV_QTY_SUPPLIES_
PO"("F"."BUSINESS_UNIT","F"."PO_ID","F"."LINE_NBR","F"."SCHED_NBR","F"."DISTRIB_LI
NE_NUM"),0)+NVL("XX_PSFT_TO_IHUB_PKG_RJ"."GET_RTV_QTY_SUPPLIES_PO"("F"."BUSINESS_U
NIT","F"."PO_ID","F"."LINE_NBR","F"."SCHED_NBR","F"."DISTRIB_LINE_NUM"),0)>0)
Remote SQL Information (identified by operation id):
4 - SELECT "A1"."BU_GROUP","A1"."BUSINESS_UNIT","A2"."BUSINESS_UNIT","A2"."INV_
ITEM_ID","A2"."PLANNED_BY","A3"."BUSINESS_UNIT","A3"."PO_ID","A3"."LINE_NBR","A3".
"SCHED_NBR","A3"."DISTRIB_LINE_NUM","A3"."INV_ITEM_ID","A3"."UNIT_OF_MEASURE","A3"
."DUE_DT","A3"."FROZEN_FLG","A3"."QTY_PO_STD","A3"."BUSINESS_UNIT_IN","A3"."PO_STA
TUS","A3"."PO_DT","A3"."VENDOR_SETID","A3"."VENDOR_ID","A3"."VNDR_LOC","A4"."SETID
","A4"."VENDOR_ID","A4"."NAME1","A5"."BUSINESS_UNIT","A5"."INV_ITEM_ID","A5"."ITM_
STATUS_CURRENT","A6"."BUSINESS_UNIT","A6"."PO_ID","A6"."LINE_NBR","A6"."SCHED_NBR"
,"A6"."ORIG_PROM_DT","A7"."SETID","A7"."INV_ITEM_ID","A7"."ITM_STATUS_CURRENT"
FROM "SYSADM"."PS_PL_GROUP_IN" "A1","SYSADM"."PS_PL_ITEM_ATTRIB"
"A2","SYSADM"."PS_PL_PO_DIST_VW2" "A3","SYSADM"."PS_VENDOR"
"A4","SYSADM"."PS_BU_ITEMS_INV" "A5","SYSADM"."PS_PO_LINE_SHIP"
"A6","SYSADM"."PS_MASTER_ITEM_TBL" "A7" WHERE "A7"."ITM_STATUS_CURRENT"<'4' AND
"A5"."INV_ITEM_ID"="A7"."INV_ITEM_ID" AND
"A3"."BUSINESS_UNIT"="A6"."BUSINESS_UNIT" AND "A3"."PO_ID"="A6"."PO_ID" AND
"A3"."LINE_NBR"="A6"."LINE_NBR" AND "A3"."SCHED_NBR"="A6"."SCHED_NBR" AND
"A5"."ITM_STATUS_CURRENT"<'4' AND "A2"."BUSINESS_UNIT"="A5"."BUSINESS_UNIT" AND
"A2"."INV_ITEM_ID"="A5"."INV_ITEM_ID" AND "A3"."VENDOR_SETID"="A4"."SETID" AND
"A3"."VENDOR_ID"="A4"."VENDOR_ID" AND "A3"."PO_STATUS"<>'C' AND
"A2"."INV_ITEM_ID"="A3"."INV_ITEM_ID" AND
"A2"."BUSINESS_UNIT"="A3"."BUSINESS_UNIT_IN" AND "A2"."PLANNED_BY"<>'4' AND
"A2"."BUSINESS_UNIT"="A1"."BUSINESS_UNIT" AND "A1"."BU_GROUP"='ASCP' (accessing
'FSUPGCLINK.OII.OCEANEERING.COM' )
5 - SELECT "SETCNTRLVALUE","RECNAME","SETID" FROM "SYSADM"."PS_SET_CNTRL_REC"
"D" WHERE "RECNAME"='MASTER_ITEM_TBL' AND "SETCNTRLVALUE"=:1 (accessing
'FSUPGCLINK.OII.OCEANEERING.COM' )
Note
- 'PLAN_TABLE' is old version
Statistics
89 recursive calls
24 db block gets
8 consistent gets
0 physical reads
0 redo size
3164 bytes sent via SQL*Net to client
524 bytes received via SQL*Net from client
2 SQL*Net roundtrips to/from client
0 sorts (memory)
0 sorts (disk)
3 rows processed
SQL> SQL>
SQL>

Similar Messages

  • Query is running very slow when consulting history data in EBS

    SELECT *
      FROM (select NVL(TO_CHAR(aps.vendor_id), 'SIN PROVEEDOR') CODIGO,
                   NVL(aps.vendor_name, 'SIN PROVEEDOR') PROVEEDOR,
                   null IMPORTE_TRANSACCIONAL,
                   SUM(nvl(CTL.GROSS_EXTENDED_AMOUNT, CTL.EXTENDED_AMOUNT) *
                       NVL(Cta.EXCHANGE_RATE, 1)) IMPORTE_FUNCIONAL
              from ra_customer_trx_all cta,
                   ra_cust_trx_types_all ctt,
                   ra_customer_trx_lines_all ctl,
                   mtl_system_items_b inv,
                   hz_cust_accounts ca,
                   hz_parties p,
                   AR_CUSTOMERS ac,
                   hz_cust_acct_sites_all hcca,
                   hz_cust_site_uses_all hcsua,
                   RA_TERRITORIES rt,
                   Jtf_Rs_Salesreps vend,
                   gl_code_combinations glc,
                   ap_suppliers aps,
                   (select paa.item_id, paa.vendor_id
                      from PO_ASL_ATTRIBUTES paa, PO_APPROVED_SUPPLIER_LIST PASL
                     where Paa.Asl_Id = PASL.Asl_Id(+)
                       and pasl.disable_flag is null) paa2
             where CTA.cust_trx_type_id = ctt.cust_trx_type_id
               and ctl.customer_trx_id = cta.customer_trx_id
               and ctl.Inventory_Item_Id = inv.inventory_item_id(+)
               and ctt.gl_id_rec = glc.code_combination_id
               and ca.cust_account_id = cta.bill_to_customer_id
               and p.party_id = ca.party_id
               and ac.CUSTOMER_ID = cta.bill_to_customer_id
               and hcca.cust_account_id = ca.cust_account_id
               and hcca.org_id = '82'
               and hcsua.site_use_id = cta.bill_to_site_use_id
               and hcsua.cust_acct_site_id = hcca.cust_acct_site_id
               and hcsua.org_id = '82'
               and rt.territory_id(+) = hcca.territory_id
               and cta.primary_salesrep_id = vend.salesrep_id(+)
               and inv.organization_id = '84'
               and paa2.vendor_id = aps.vendor_id(+)
               and ctl.inventory_item_id = paa2.item_id(+)
               AND CTT.TYPE IN ('INV', 'CM')
               and ca.cust_account_id(+) = cta.bill_to_customer_id
               and p.party_id(+) = ca.party_id
               and ctl.Line_Type = 'LINE'
               and cta.complete_flag = 'Y'
               and cta.status_trx not in ('VD')
               and cta.legal_entity_id = '23274'
               and cta.trx_date between to_Date('01/10/2014', 'dd/MM/yyyy') AND
                   to_Date('13/10/2014', 'dd/MM/yyyy')
             group by aps.vendor_id, aps.vendor_name
            UNION
            select 'SIN ITEM' CODIGO,
                   'SIN ITEM' PROVEEDOR,
                   null IMPORTE_TRANSACCIONAL,
                   SUM(nvl(CTL.GROSS_EXTENDED_AMOUNT, CTL.EXTENDED_AMOUNT) *
                       NVL(Cta.EXCHANGE_RATE, 1)) IMPORTE_FUNCIONAL
              from ra_customer_trx_all       cta,
                   ra_cust_trx_types_all     ctt,
                   ra_customer_trx_lines_all ctl,
                   hz_cust_accounts          ca,
                   hz_parties                p,
                   AR_CUSTOMERS              ac,
                   hz_cust_acct_sites_all    hcca,
                   hz_cust_site_uses_all     hcsua,
                   RA_TERRITORIES            rt,
                   Jtf_Rs_Salesreps          vend,
                   gl_code_combinations      glc
             where CTA.cust_trx_type_id = ctt.cust_trx_type_id
               and ctl.customer_trx_id = cta.customer_trx_id
               and ctl.Inventory_Item_Id is null
               and ctt.gl_id_rec = glc.code_combination_id
               and ca.cust_account_id = cta.bill_to_customer_id
               and p.party_id = ca.party_id
               and ac.CUSTOMER_ID = cta.bill_to_customer_id
               and hcca.cust_account_id = ca.cust_account_id
               and hcca.org_id = '82'
               and hcsua.site_use_id = cta.bill_to_site_use_id
               and hcsua.cust_acct_site_id = hcca.cust_acct_site_id
               and hcsua.org_id = '82'
               and rt.territory_id(+) = hcca.territory_id
               and cta.primary_salesrep_id = vend.salesrep_id(+)
               AND CTT.TYPE IN ('INV', 'CM')
               and ca.cust_account_id(+) = cta.bill_to_customer_id
               and p.party_id(+) = ca.party_id
               and ctl.Line_Type = 'LINE'
               and cta.complete_flag = 'Y'
               and cta.status_trx not in ('VD')
               and cta.legal_entity_id = '23274'
               and cta.trx_date between to_Date('01/10/2014', 'dd/MM/yyyy') AND
                   to_Date('13/10/2014', 'dd/MM/yyyy')
             group by 'SIN ITEM', 'SIN ITEM') T_GRUPO
    order by DECODE(T_GRUPO.PROVEEDOR,
                     'SIN ITEM',
                     'A',
                     'SIN PROVEEDOR',
                     'A',
                     T_GRUPO.PROVEEDOR)

    Hi Hussein,
    APP 12.1.3
    Database 11.2.0.3.0
    SO linux x86-64
    stadistics: 0ne month ago 
    this  slowness is from three months ago
    Execution Plan
    | Id  | Operation                                                  | Name                                  | Rows  | Bytes | Cost (%CPU)|
    |   0 | SELECT STATEMENT                                 |                                          |      2 |   318 | 12680   (1)|
    |   1 |  SORT ORDER BY                                      |                                          |      2 |   318 | 12680   (1)|
    |   2 |   VIEW                                                        |                                          |      2 |   318 | 12679   (1)|
    |   3 |    SORT UNIQUE                                          |                                         |      2 |   697 | 12679  (51)|                                      
    |   4 |     UNION-ALL                                              |                                          |        |            |               |                                
    |   5 |      HASH GROUP BY                                   |                                           |      1 |   377 |  6338   (1)|                                      
    |   6 |       NESTED LOOPS OUTER                        |                                            |      1 |   377 |  6336   (1)|                                      
    |   7 |        NESTED LOOPS OUTER                       |                                           |      1 |   343 |  6336   (1)|                                      
    |   8 |         NESTED LOOPS                                 |                                              |      1 |   328 |  6335   (1)|                                      
    |   9 |          NESTED LOOPS                                |                                              |      1 |   323 |  6335   (1)|                                      
    |  10 |           NESTED LOOPS OUTER                 |                                                 |      1 |   311 |  6333   (1)|                                      
    |  11 |            NESTED LOOPS                           |                                                    |      1 |   304 |  6332   (1)|                                      
    |  12 |             NESTED LOOPS                          |                                                  |      1 |   296 |  6332   (1)|                                      
    |  13 |              NESTED LOOPS                        |                                                   |      1 |   275 |  6329   (1)|                                      
    |* 14 |               HASH JOIN                               |                                                   |      1 |   192 |  6328   (1)|                                      
    |* 15 |                HASH JOIN                    |                                                              |  6493 |   450K|  5778   (1)|                                       
    |* 16 |                 HASH JOIN                   | |                                                              6493 |   367K|  5432   (1)|                                       
    |* 17 |        TABLE ACCESS BY INDEX ROWID | RA_CUSTOMER_TRX_ALL                  |  6556 |   288K|  4635   (1)|                                       
    |* 18 |                   INDEX RANGE SCAN          | RA_CUSTOMER_TRX_N5                     | 26223 |        |    97   (2)|                                      
    |* 19 |                  TABLE ACCESS FULL          | HZ_CUST_SITE_USES_ALL                  | 40227 |   510K|   797   (3)|                                       
    |* 20 |                 TABLE ACCESS FULL           | HZ_CUST_ACCT_SITES_ALL                  | 20020 |   254K|   345   (3)|                                       
    |  21 |                TABLE ACCESS FULL            | HZ_CUST_ACCOUNTS                             | 40020 |  4728K|   549   (3)|                                       
    |* 22 |               INDEX UNIQUE SCAN             | HZ_PARTIES_U1                                       |      1|                  |     0   (0)|                                       
    |* 23 |       TABLE ACCESS BY INDEX ROWID    | RA_CUSTOMER_TRX_LINES_ALL           |     1 |    21      |     3   (0)|                                       
    |* 24 |               INDEX RANGE SCAN              | RA_CUSTOMER_TRX_LINES_N2                |      4 |            |     2   (0)|                                      
    |* 25 |             INDEX UNIQUE SCAN               | MTL_SYSTEM_ITEMS_B_U1                      |      1 |     8      |     0   (0)|                                      
    |* 26 |            INDEX RANGE SCAN                 | JTF_RS_SALESREPS_U1                           |      1 |     7      |     1   (0)|                                      
    |* 27 |           TABLE ACCESS BY INDEX ROWID       | RA_CUST_TRX_TYPES_ALL              |      1 |    12      |     2   (0)|                                      
    |* 28 |            INDEX RANGE SCAN                 | RA_CUST_TRX_TYPES_U1                           |      1 |            |     1   (0)                                       
    |* 29 |          INDEX UNIQUE SCAN                  | GL_CODE_COMBINATIONS_U1                     |      1 |     5      |     0   (0)|                                      
    |  30 |         VIEW PUSHED PREDICATE               |                                                                |      1 |    15      |     1   (0)|                                      
    |* 31 |          FILTER                             |                                                                                 |        |       |            |                                      
    |  32 |           NESTED LOOPS OUTER                  |                                                                 |      1 |    54      |     1   (0)|                                      
    |  33 |            TABLE ACCESS BY INDEX ROWID      | PO_ASL_ATTRIBUTES                          |      1 |    39      |     1   (0)|                                      
    |* 34 |             INDEX SKIP SCAN                              | PO_ASL_ATTRIBUTES_N1                    |      1 |               |     1   (0)|                                      
    |  35 |            TABLE ACCESS BY INDEX ROWID    | PO_APPROVED_SUPPLIER_LIST           |     1      |    15     |     0   (0)|                                       
    |* 36 |             INDEX UNIQUE SCAN                      | PO_APPROVED_SUPPLIER_LIST_U1        |     1      |              |     0   (0)|                                       
    |  37 |        TABLE ACCESS BY INDEX ROWID        | AP_SUPPLIERS                                       |      1      |    34       |     0   (0)|                                      
    |* 38 |         INDEX UNIQUE SCAN                         | AP_SUPPLIERS_U1                                    |      1      |              |     0   (0)|                                      
    |  39 |      SORT GROUP BY NOSORT                   |                                                               |      1 |   320           |  6341   (1)|                                      
    |  40 |       NESTED LOOPS                          |                                                                       |        |                      |            |                                      
    |  41 |        NESTED LOOPS                         |                                                                        |      1 |   320           |  6340   (1)|                                      
    |  42 |         NESTED LOOPS                        |                                                                       |      1 |        299      |  6337   (1)|                                     
    |  43 |          NESTED LOOPS OUTER                 |                                                                  |      1 |   216           |  6336   (1)|                                      
    |* 44 |           HASH JOIN                         |                                                                              |      1 |   209      |  6335   (1)|                                      
    |* 45 |            TABLE ACCESS FULL                | HZ_CUST_ACCT_SITES_ALL                        | 20020  |   254K      |   345   (3)|                                      
    |* 46 |            HASH JOIN                        |                                                                           |  5819      |  1113K     |  5989   (1)|                                      
    |* 47 |             HASH JOIN                       |                                                                            |  5875      |   430K     |      5439   (1)|                                      
    |* 48 |              HASH JOIN                      |                                                                            |  5931      |   359K     |  4641   (1)|                                      
    |  49 |               NESTED LOOPS                  |                                                                       |     38      |   646      |     6   (0)|                                     
    |* 50 |                TABLE ACCESS FULL            | RA_CUST_TRX_TYPES_ALL                        |          38 |   456      |     6   (0)|                                     
    |* 51 |                INDEX UNIQUE SCAN            | GL_CODE_COMBINATIONS_U1                       |      1      |     5      |     0   (0)|                                     
    |* 52 |       TABLE ACCESS BY INDEX ROWID   | RA_CUSTOMER_TRX_ALL                              |  6556 |   288K |  4635   (1)|                                     
    |* 53 |                INDEX RANGE SCAN             | RA_CUSTOMER_TRX_N5                               | 26223    |        |    97   (2)|                                     
    |* 54 |              TABLE ACCESS FULL              | HZ_CUST_SITE_USES_ALL                         | 40227 |   510K |   797   (3)|                                     
    |  55 |             TABLE ACCESS FULL               | HZ_CUST_ACCOUNTS                                 | 40020 |  4728K |   549   (3)|                                     
    |* 56 |           INDEX RANGE SCAN                  | JTF_RS_SALESREPS_U1                             |      1      |     7      |     1   (0)|                                     
    |* 57 |          INDEX UNIQUE SCAN                  | HZ_PARTIES_U1                                             |       1      |       |     0   (0)|                                     
    |* 58 |         INDEX RANGE SCAN                    | RA_CUSTOMER_TRX_LINES_N2                     |      4      |         |     2   (0)|                                     
    |* 59 |        TABLE ACCESS BY INDEX ROWID          | RA_CUSTOMER_TRX_LINES_ALL           |     1       |    21     |     3   (0)|                                    
    Predicate Information (identified by operation id):
      14 - access("CUST"."CUST_ACCOUNT_ID"="CTA"."BILL_TO_CUSTOMER_ID" AND
                  "HCCA"."CUST_ACCOUNT_ID"="CUST_ACCOUNT_ID")
      15 - access("HCSUA"."CUST_ACCT_SITE_ID"="HCCA"."CUST_ACCT_SITE_ID")
      16 - access("HCSUA"."SITE_USE_ID"="CTA"."BILL_TO_SITE_USE_ID")
      17 - filter("CTA"."COMPLETE_FLAG"='Y' AND "CTA"."STATUS_TRX"<>'VD' AND "CTA"."                                                                            LEGAL_ENTITY_ID"=23274)
      18 - access("CTA"."TRX_DATE">=TO_DATE(' 2014-01-01 00:00:00', 'syyyy-mm-dd hh2                                                                             
    4:mi:ss') AND
                  "CTA"."TRX_DATE"<=TO_DATE(' 2014-10-13 00:00:00', 'syyyy-mm-dd hh2                                                                             
    4:mi:ss'))
      19 - filter("HCSUA"."ORG_ID"=82)
      20 - filter("HCCA"."ORG_ID"=82)
      22 - access("PARTY_ID"="PARTY_ID")
      23 - filter("CTL"."INVENTORY_ITEM_ID" IS NOT NULL AND "CTL"."LINE_TYPE"='LINE'                                                                             
      24 - access("CTL"."CUSTOMER_TRX_ID"="CTA"."CUSTOMER_TRX_ID")
      25 - access("CTL"."INVENTORY_ITEM_ID"="INV"."INVENTORY_ITEM_ID" AND "INV"."ORG                                                                             
    ANIZATION_ID"=84)
      26 - access("CTA"."PRIMARY_SALESREP_ID"="VEND"."SALESREP_ID"(+))
      27 - filter("CTT"."GL_ID_REC" IS NOT NULL AND ("CTT"."TYPE"='CM' OR "CTT"."TYP                                                                             
    E"='INV'))
      28 - access("CTA"."CUST_TRX_TYPE_ID"="CTT"."CUST_TRX_TYPE_ID")
      29 - access("CTT"."GL_ID_REC"="GLC"."CODE_COMBINATION_ID")
      31 - filter("PASL"."DISABLE_FLAG" IS NULL)
      34 - access("PAA"."ITEM_ID"="CTL"."INVENTORY_ITEM_ID")
           filter("PAA"."ITEM_ID"="CTL"."INVENTORY_ITEM_ID")
      36 - access("PAA"."ASL_ID"="PASL"."ASL_ID"(+))
      38 - access("PAA2"."VENDOR_ID"="APS"."VENDOR_ID"(+))
      44 - access("HCCA"."CUST_ACCOUNT_ID"="CUST_ACCOUNT_ID" AND
                  "HCSUA"."CUST_ACCT_SITE_ID"="HCCA"."CUST_ACCT_SITE_ID")
      45 - filter("HCCA"."ORG_ID"=82)
      46 - access("CUST"."CUST_ACCOUNT_ID"="CTA"."BILL_TO_CUSTOMER_ID")
      47 - access("HCSUA"."SITE_USE_ID"="CTA"."BILL_TO_SITE_USE_ID")
      48 - access("CTA"."CUST_TRX_TYPE_ID"="CTT"."CUST_TRX_TYPE_ID")
      50 - filter("CTT"."GL_ID_REC" IS NOT NULL AND ("CTT"."TYPE"='CM' OR "CTT"."TYP                                                                             
    E"='INV'))
      51 - access("CTT"."GL_ID_REC"="GLC"."CODE_COMBINATION_ID")
      52 - filter("CTA"."COMPLETE_FLAG"='Y' AND "CTA"."STATUS_TRX"<>'VD' AND "CTA"."                                                                             
    LEGAL_ENTITY_ID"=23274)
      53 - access("CTA"."TRX_DATE">=TO_DATE(' 2014-01-01 00:00:00', 'syyyy-mm-dd hh2                                                                             
    4:mi:ss') AND
                  "CTA"."TRX_DATE"<=TO_DATE(' 2014-10-13 00:00:00', 'syyyy-mm-dd hh2                                                                             
    4:mi:ss'))
      54 - filter("HCSUA"."ORG_ID"=82)
      56 - access("CTA"."PRIMARY_SALESREP_ID"="VEND"."SALESREP_ID"(+))
      57 - access("PARTY_ID"="PARTY_ID")
      58 - access("CTL"."CUSTOMER_TRX_ID"="CTA"."CUSTOMER_TRX_ID")
      59 - filter("CTL"."INVENTORY_ITEM_ID" IS NULL AND "CTL"."LINE_TYPE"='LINE')
    Note
       - 'PLAN_TABLE' is old version
    Statistics
             15  recursive calls
              0  db block gets
       62543652  consistent gets
         269141  physical reads
            172  redo size
          12832  bytes sent via SQL*Net to client
            674  bytes received via SQL*Net from client
             16  SQL*Net roundtrips to/from client
              2  sorts (memory)
              0  sorts (disk)
            212  rows processed

  • Update Query is running very slow

    Database version 11.2.0.2
         UPDATE ps_jrnl_ln a SET a.jrnl_line_status = :"SYS_B_0" WHERE a.project_id = :"SYS_B_1" AND a.account IN ( SELECT DISTINCT c.account FROM PSTREENODE A , PSTREELEAF B , PS_OI_NODE_BAL_PC G , PS_GL_ACCOUNT_TBL C WHERE A.EFFDT = ( SELECT MAX(X.EFFDT) FROM PSTREEDEFN X WHERE A.SETID = X.SETID AND A.TREE_NAME = X.TREE_NAME) AND B.SETID = A.SETID AND A.TREE_NODE = G.TREE_NODE AND A.TREE_NAME = G.TREE_NAME AND g.activeflag = :"SYS_B_2" AND B.TREE_NAME = A.TREE_NAME AND B.EFFDT = A.EFFDT AND B.TREE_NODE_NUM BETWEEN A.TREE_NODE_NUM AND A.TREE_NODE_NUM_END AND C.ACCOUNT BETWEEN B.RANGE_FROM AND B.RANGE_TO) AND EXISTS ( SELECT :"SYS_B_3" FROM PS_JRNL_HEADER C WHERE A.BUSINESS_UNIT = C.BUSINESS_UNIT AND A.JOURNAL_ID = C.JOURNAL_ID AND A.JOURNAL_DATE = C.JOURNAL_DATE AND C.JOURNAL_LOCKED = :"SYS_B_4" AND C.PROCESS_INSTANCE = :"SYS_B_5")
    {Code}
    Execution Plan--------------------------------------------------------------------------------------------------------------
    | Id | Operation | Name | Rows | Bytes |TempSpc| Cost (%CPU)| Time |
    | 0 | UPDATE STATEMENT | | 5 | 395 | | 10586 (17)| 00:02:08 |
    | 1 | UPDATE | PS_JRNL_LN | | | | | |
    |* 2 | HASH JOIN SEMI | | 5 | 395 | | 10586 (17)| 00:02:08 |
    | 3 | NESTED LOOPS | | 5 | 360 | | 19 (6)| 00:00:01 |
    | 4 | SORT UNIQUE | | 5 | 165 | | 6 (0)| 00:00:01 |
    | 5 | TABLE ACCESS BY INDEX ROWID | PS_JRNL_HEADER | 5 | 165 | | 6 (0)| 00:00:01 |
    |* 6 | INDEX RANGE SCAN | PSZJRNL_HEADER | 5 | | | 3 (0)| 00:00:01 |
    |* 7 | TABLE ACCESS BY INDEX ROWID | PS_JRNL_LN | 1 | 39 | | 4 (0)| 00:00:01 |
    |* 8 | INDEX RANGE SCAN | PS_JRNL_LN | 1 | | | 3 (0)| 00:00:01 |
    | 9 | VIEW | VW_NSO_1 | 378K| 2585K| | 10565 (17)| 00:02:07 |
    |* 10 | FILTER | | | | | | |
    |* 11 | HASH JOIN | | 68M| 9738M| | 10561 (17)| 00:02:07 |
    | 12 | INDEX FAST FULL SCAN | PSAPSTREENODE | 23610 | 1175K| | 63 (0)| 00:00:01 |
    | 13 | MERGE JOIN | | 90M| 8548M| | 9370 (7)| 00:01:53 |
    | 14 | SORT JOIN | | 670 | 30150 | | 6 (17)| 00:00:01 |
    | 15 | MERGE JOIN CARTESIAN | | 670 | 30150 | | 5 (0)| 00:00:01 |
    |* 16 | TABLE ACCESS FULL | PS_OI_NODE_BAL_PC | 2 | 80 | | 3 (0)| 00:00:01 |
    | 17 | BUFFER SORT | | 335 | 1675 | | 2 (0)| 00:00:01 |
    | 18 | INDEX FAST FULL SCAN | PSAGL_ACCOUNT_TBL | 335 | 1675 | | 1 (0)| 00:00:01 |
    |* 19 | FILTER | | | | | | |
    |* 20 | SORT JOIN | | 562K| 28M| 77M| 8778 (1)| 00:01:46 |
    | 21 | INDEX FAST FULL SCAN | PSCPSTREELEAF | 562K| 28M| | 1315 (1)| 00:00:16 |
    | 22 | SORT AGGREGATE | | 1 | 25 | | | |
    | 23 | FIRST ROW | | 1 | 25 | | 2 (0)| 00:00:01 |
    |* 24 | INDEX RANGE SCAN (MIN/MAX)| PSBPSTREEDEFN | 1 | 25 | | 2 (0)| 00:00:01 |
    Predicate Information (identified by operation id):
    2 - access("A"."ACCOUNT"="ACCOUNT")
    6 - access("C"."PROCESS_INSTANCE"=TO_NUMBER(:SYS_B_5) AND "C"."JOURNAL_LOCKED"=:SYS_B_4)
    7 - filter("A"."PROJECT_ID"=:SYS_B_1)
    8 - access("A"."BUSINESS_UNIT"="C"."BUSINESS_UNIT" AND "A"."JOURNAL_ID"="C"."JOURNAL_ID" AND
    SYS_OP_DESCEND("JOURNAL_DATE")=SYS_OP_DESCEND("C"."JOURNAL_DATE"))
    filter(SYS_OP_UNDESCEND(SYS_OP_DESCEND("JOURNAL_DATE"))="C"."JOURNAL_DATE")
    10 - filter("A"."EFFDT"= (SELECT MAX("X"."EFFDT") FROM "PSTREEDEFN" "X" WHERE "X"."TREE_NAME"=:B1
    AND "X"."SETID"=:B2))
    11 - access("B"."SETID"="A"."SETID" AND "A"."TREE_NODE"="G"."TREE_NODE" AND
    "A"."TREE_NAME"="G"."TREE_NAME" AND "B"."TREE_NAME"="A"."TREE_NAME" AND "B"."EFFDT"="A"."EFFDT")
    filter("B"."TREE_NODE_NUM">="A"."TREE_NODE_NUM" AND
    "B"."TREE_NODE_NUM"<="A"."TREE_NODE_NUM_END")
    16 - filter("G"."ACTIVEFLAG"=TO_NUMBER(:SYS_B_2))
    19 - filter("C"."ACCOUNT"<="B"."RANGE_TO")
    20 - access(INTERNAL_FUNCTION("C"."ACCOUNT")>=INTERNAL_FUNCTION("B"."RANGE_FROM"))
    filter(INTERNAL_FUNCTION("C"."ACCOUNT")>=INTERNAL_FUNCTION("B"."RANGE_FROM"))
    24 - access("X"."SETID"=:B1 AND "X"."TREE_NAME"=:B2)
    52 rows selected.

    I don't see any benefit of the extenal conversion. Cost is still same.
    | Id  | Operation                        | Name              | Rows  | Bytes |TempSpc| Cost (%CPU)| Time     |
    |   0 | UPDATE STATEMENT                 |                   |     5 |   395 |       | 10586  (17)| 00:02:08 |
    |   1 |  UPDATE                          | PS_JRNL_LN        |       |       |       |            |          |
    |*  2 |   HASH JOIN SEMI                 |                   |     5 |   395 |       | 10586  (17)| 00:02:08 |
    |   3 |    NESTED LOOPS                  |                   |     5 |   360 |       |    19   (6)| 00:00:01 |
    |   4 |     SORT UNIQUE                  |                   |     5 |   165 |       |     6   (0)| 00:00:01 |
    |   5 |      TABLE ACCESS BY INDEX ROWID | PS_JRNL_HEADER    |     5 |   165 |       |     6   (0)| 00:00:01 |
    |*  6 |       INDEX RANGE SCAN           | PSZJRNL_HEADER    |     5 |       |       |     3   (0)| 00:00:01 |
    |*  7 |     TABLE ACCESS BY INDEX ROWID  | PS_JRNL_LN        |     1 |    39 |       |     4   (0)| 00:00:01 |
    |*  8 |      INDEX RANGE SCAN            | PS_JRNL_LN        |     1 |       |       |     3   (0)| 00:00:01 |
    |   9 |    VIEW                          | VW_NSO_1          |   378K|  2585K|       | 10565  (17)| 00:02:07 |
    |* 10 |     FILTER                       |                   |       |       |       |            |          |
    |* 11 |      HASH JOIN                   |                   |    68M|  9738M|       | 10561  (17)| 00:02:07 |
    |  12 |       INDEX FAST FULL SCAN       | PSAPSTREENODE     | 23610 |  1175K|       |    63   (0)| 00:00:01 |
    |  13 |       MERGE JOIN                 |                   |    90M|  8548M|       |  9370   (7)| 00:01:53 |
    |  14 |        SORT JOIN                 |                   |   670 | 30150 |       |     6  (17)| 00:00:01 |
    |  15 |         MERGE JOIN CARTESIAN     |                   |   670 | 30150 |       |     5   (0)| 00:00:01 |
    |* 16 |          TABLE ACCESS FULL       | PS_OI_NODE_BAL_PC |     2 |    80 |       |     3   (0)| 00:00:01 |
    |  17 |          BUFFER SORT             |                   |   335 |  1675 |       |     2   (0)| 00:00:01 |
    |  18 |           INDEX FAST FULL SCAN   | PSAGL_ACCOUNT_TBL |   335 |  1675 |       |     1   (0)| 00:00:01 |
    |* 19 |        FILTER                    |                   |       |       |       |            |          |
    |* 20 |         SORT JOIN                |                   |   562K|    28M|    77M|  8778   (1)| 00:01:46 |
    |  21 |          INDEX FAST FULL SCAN    | PSCPSTREELEAF     |   562K|    28M|       |  1315   (1)| 00:00:16 |
    |  22 |      SORT AGGREGATE              |                   |     1 |    25 |       |            |          |
    |  23 |       FIRST ROW                  |                   |     1 |    25 |       |     2   (0)| 00:00:01 |
    |* 24 |        INDEX RANGE SCAN (MIN/MAX)| PSBPSTREEDEFN     |     1 |    25 |       |     2   (0)| 00:00:01 |
    Predicate Information (identified by operation id):
       2 - access("A"."ACCOUNT"="ACCOUNT")
       6 - access("C"."PROCESS_INSTANCE"=TO_NUMBER(:SYS_B_5) AND "C"."JOURNAL_LOCKED"=:SYS_B_4)
       7 - filter("A"."PROJECT_ID"=:SYS_B_1)
       8 - access("A"."BUSINESS_UNIT"="C"."BUSINESS_UNIT" AND "A"."JOURNAL_ID"="C"."JOURNAL_ID" AND
                  SYS_OP_DESCEND("JOURNAL_DATE")=SYS_OP_DESCEND("C"."JOURNAL_DATE"))
           filter(SYS_OP_UNDESCEND(SYS_OP_DESCEND("JOURNAL_DATE"))="C"."JOURNAL_DATE")
      10 - filter("A"."EFFDT"= (SELECT MAX("X"."EFFDT") FROM "PSTREEDEFN" "X" WHERE "X"."TREE_NAME"=:B1
                  AND "X"."SETID"=:B2))
      11 - access("B"."SETID"="A"."SETID" AND "A"."TREE_NODE"="G"."TREE_NODE" AND
                  "A"."TREE_NAME"="G"."TREE_NAME" AND "B"."TREE_NAME"="A"."TREE_NAME" AND "B"."EFFDT"="A"."EFFDT")
           filter("B"."TREE_NODE_NUM">="A"."TREE_NODE_NUM" AND
                  "B"."TREE_NODE_NUM"<="A"."TREE_NODE_NUM_END")
      16 - filter("G"."ACTIVEFLAG"=TO_NUMBER(:SYS_B_2))
      19 - filter("C"."ACCOUNT"<="B"."RANGE_TO")
      20 - access(INTERNAL_FUNCTION("C"."ACCOUNT")>=INTERNAL_FUNCTION("B"."RANGE_FROM"))
           filter(INTERNAL_FUNCTION("C"."ACCOUNT")>=INTERNAL_FUNCTION("B"."RANGE_FROM"))
      24 - access("X"."SETID"=:B1 AND "X"."TREE_NAME"=:B2)
    52 rows selected.

  • MS-Access query running very slow

    Hi,
    We've MS-Access application which was pointing to UDB. Now we migrated it to point Oracle DB 9.2. After migration some of the query is running very slow.
    These queries used to take less than 30 seconds in UDB now taking more than 5 Minutes in Oracle.
    some more obeservation :
    (1) Some of the queries using "HAVING" clause without any aggregate function. When I moved this condition to "WHERE" clause, performance improved a lot.
    But problem is that I can't suggest this solution to "USERS". They are creating query using "query wizard" in MS-Access and they started creating noise on this.
    (2) I tested same MDB in two different PCs and same query is returning records in 4 seconds in one system, is taking more than 10 minutes in other system.
    Since I'm new to MS-Access, I don't know what other information I need to provide here.
    Please help me out.

    I have seen the problem like this,too
    can i have you

  • Oracle query running very slow

    Hi,
    We've MS-Access application which was pointing to UDB. Now we migrated it to point Oracle DB 9.2. After migration some of the query is running very slow.
    These queries used to take less than 30 seconds in UDB now taking more than 5 Minutes in Oracle.
    some more obeservation :
    (1) Some of the queries using "HAVING" clause without any aggregate function. When I moved this condition to "WHERE" clause, performance improved a lot.
    But problem is that I can't suggest this solution to "USERS". They are creating query using "query wizard" in MS-Access and they started creating noise on this.
    (2) I tested same MDB in two different PCs and same query is returning records in 4 seconds in one system, is taking more than 10 minutes in other system.
    Since I'm new to MS-Access, I don't know what other information I need to provide here.
    Please help me out.

    ms wrote:
    Hi All
    I am using Oracle 11g . My table contains 10-12 lac rows.Do not use the word lac: it is common in the Indian sub-continent but not known much outside of
    there because it is not standard English.
    >
    1) what is the difference between a index on one column and an index of number of columns ( i.e composite index). The obvious answer of one contains only one column and the other contains more than one.
    2) For what columns in a where clause should index be created ( single columns index or composite index ).Depends
    3) Also can u suggest how to improve the perfomane of thsi query?Please read: SQL and PL/SQL FAQ
    which tells you how to ask a performance related question

  • Report region runs very slow, but its sql runs fast

    We have a page with a report region Type :SQL Query (plsq function body returning sql query) which runs very slow, pegging the tach on our db box for almost a minute before returning report rows. However, if we run the generated sql from sql plus, it returns all the rows in under 10 seconds with nary a blip on the box. Any idas how what could be causing this or how to debug?
    Thanks,
    Steve

    OK, here is the bad boy, shortly after our code that returns the data.
    declare
    rc__ number;
    simple_list__ owa_util.vc_arr;
    complex_list__ owa_util.vc_arr;
    begin
    owa.init_cgi_env(:n__,:nm__,:v__);
    htp.HTBUF_LEN := 63;
    null;
    null;
    simple_list__(1) := 'sys.%';
    simple_list__(2) := 'dbms\_%';
    simple_list__(3) := 'utl\_%';
    simple_list__(4) := 'owa\_%';
    simple_list__(5) := 'owa.%';
    simple_list__(6) := 'htp.%';
    simple_list__(7) := 'htf.%';
    simple_list__(8) := 'wpg_docload.%';
    if ((owa_match.match_pattern(p_string =>
    'f'
    /* */,p_simple_pattern =>
    simple_list__
    ,p_complex_pattern =>
    complex_list__
    ,p_use_special_chars =>
    false)))
    then
    rc__ := 2;
    else
    null;
    null;
    f(p=>:p);
    if (wpg_docload.is_file_download) then
    rc__ := 1;
    wpg_docload.get_download_file(:doc_info);
    null;
    null;
    null;
    commit;
    else
    rc__ := 0;
    null;
    null;
    null;
    commit;
    owa.get_page(:data__,:ndata__);
    end if;
    end if;
    :rc__ := rc__;
    end;
    call count cpu elapsed disk query current rows
    Parse 0 0.00 0.00 0 0 0 0
    Execute 1 25.53 26.59 4492 20992 60 1
    Fetch 0 0.00 0.00 0 0 0 0
    total 1 25.53 26.59 4492 20992 60 1

  • Query runs very slow and sometime freezes

    Hi Experts,
    I have just installed SAP GUI 710 but when i open a query in analyzer it runs very slow and  if the variables are set for more than 6 months it just sits there and finally times out. It takes at least 5 minutes to open the query if it opens at all. Can you please advise me on how to resolve this issue??
    Thanks, point will be awarded.

    Worth running RSRT .
    Ravi Thothadri

  • Problem description: My computer is running very slow ever since I switched to Yosemite.  I get the multicolored wheel just opening my browser at times and waiting for a page to open, or an application.  Any ideas other than rebooting my computer to

    Problem description:
    My computer is running very slow ever since I switched to Yosemite.  I get the multicolored wheel just opening my browser at times and waiting for a page to open, or an application.  Any ideas other than rebooting my computer to get the problem to alleviate for a few days?
    EtreCheck version: 2.1.8 (121)
    Report generated February 16, 2015 at 2:35:55 PM PST
    Download EtreCheck from http://etresoft.com/etrecheck
    Click the [Click for support] links for help with non-Apple products.
    Click the [Click for details] links for more information about that line.
    Hardware Information: ℹ️
        iMac (21.5-inch, Late 2009) (Technical Specifications)
        iMac - model: iMac10,1
        1 3.06 GHz Intel Core 2 Duo CPU: 2-core
        4 GB RAM Upgradeable
            BANK 0/DIMM0
                Empty  
            BANK 1/DIMM0
                Empty  
            BANK 0/DIMM1
                2 GB DDR3 1067 MHz ok
            BANK 1/DIMM1
                2 GB DDR3 1067 MHz ok
        Bluetooth: Old - Handoff/Airdrop2 not supported
        Wireless:  en1: 802.11 a/b/g/n
    Video Information: ℹ️
        NVIDIA GeForce 9400 - VRAM: 256 MB
            iMac 1920 x 1080
    System Software: ℹ️
        OS X 10.10.2 (14C109) - Time since boot: 11 days 19:34:2
    Disk Information: ℹ️
        ST3500418ASQ disk0 : (500.11 GB)
            EFI (disk0s1) <not mounted> : 210 MB
            Recovery HD (disk0s3) <not mounted>  [Recovery]: 650 MB
            BOOTCAMP (disk0s4) /Volumes/BOOTCAMP : 60.76 GB (15.30 GB free)
            Macintosh HD (disk1) / : 438.11 GB (351.62 GB free)
                Encrypted AES-XTS Unlocked
                Core Storage: disk0s2 438.49 GB Online
        HL-DT-ST DVDRW  GA11N 
    USB Information: ℹ️
        Apple Inc. Built-in iSight
        Apple Internal Memory Card Reader
        Apple, Inc. Keyboard Hub
            Apple Inc. Apple Keyboard
        hp officejet 4200 series
        Apple Computer, Inc. IR Receiver
        Apple Inc. BRCM2046 Hub
            Apple Inc. Bluetooth USB Host Controller
    Gatekeeper: ℹ️
        Mac App Store and identified developers
    Problem System Launch Agents: ℹ️
        [killed]    com.apple.accountsd.plist
        [killed]    com.apple.AirPlayUIAgent.plist
        [killed]    com.apple.bird.plist
        [killed]    com.apple.CallHistoryPluginHelper.plist
        [killed]    com.apple.CallHistorySyncHelper.plist
        [killed]    com.apple.cloudd.plist
        [killed]    com.apple.coreservices.appleid.authentication.plist
        [killed]    com.apple.coreservices.uiagent.plist
        [killed]    com.apple.EscrowSecurityAlert.plist
        [killed]    com.apple.icloud.fmfd.plist
        [killed]    com.apple.iconservices.iconservicesagent.plist
        [killed]    com.apple.nsurlsessiond.plist
        [killed]    com.apple.pluginkit.pkd.plist
        [killed]    com.apple.printtool.agent.plist
        [killed]    com.apple.recentsd.plist
        [killed]    com.apple.secd.plist
        [killed]    com.apple.security.cloudkeychainproxy.plist
        [killed]    com.apple.spindump_agent.plist
        [killed]    com.apple.telephonyutilities.callservicesd.plist
        19 processes killed due to memory pressure
    Problem System Launch Daemons: ℹ️
        [killed]    com.apple.AssetCacheLocatorService.plist
        [killed]    com.apple.awdd.plist
        [killed]    com.apple.coresymbolicationd.plist
        [killed]    com.apple.ctkd.plist
        [killed]    com.apple.diagnosticd.plist
        [killed]    com.apple.emond.aslmanager.plist
        [killed]    com.apple.iconservices.iconservicesagent.plist
        [killed]    com.apple.iconservices.iconservicesd.plist
        [killed]    com.apple.ifdreader.plist
        [killed]    com.apple.nehelper.plist
        [killed]    com.apple.nsurlsessiond.plist
        [killed]    com.apple.periodic-daily.plist
        [killed]    com.apple.periodic-monthly.plist
        [killed]    com.apple.periodic-weekly.plist
        [killed]    com.apple.sandboxd.plist
        [killed]    com.apple.softwareupdate_download_service.plist
        [killed]    com.apple.spindump.plist
        [killed]    com.apple.tccd.system.plist
        [killed]    com.apple.wdhelper.plist
        [killed]    com.apple.xpc.smd.plist
        20 processes killed due to memory pressure
    User Launch Agents: ℹ️
        [loaded]    com.adobe.ARM.[...].plist [Click for support]
        [running]    com.GoodShop.updater.plist [Click for support]
    User Login Items: ℹ️
        None
    Internet Plug-ins: ℹ️
        o1dbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Click for support]
        Google Earth Web Plug-in: Version: 5.2 [Click for support]
        Default Browser: Version: 600 - SDK 10.10
        Flip4Mac WMV Plugin: Version: 2.4.2.4 [Click for support]
        RealPlayer Plugin: Version: Unknown [Click for support]
        AdobePDFViewerNPAPI: Version: 10.1.13 [Click for support]
        DivXBrowserPlugin: Version: 2.0 [Click for support]
        Silverlight: Version: 5.1.30514.0 - SDK 10.6 [Click for support]
        QuickTime Plugin: Version: 7.7.3
        iPhotoPhotocast: Version: 7.0
        googletalkbrowserplugin: Version: 5.38.6.0 - SDK 10.8 [Click for support]
        AdobePDFViewer: Version: 10.1.13 [Click for support]
        GarminGpsControl: Version: 4.2.0.0 - SDK 10.8 [Click for support]
    User internet Plug-ins: ℹ️
        CitrixOnlineWebDeploymentPlugin: Version: 1.0.79 [Click for support]
        VSeeHelper: Version: VSeeHelper 1.0.0.0 - SDK 10.8 [Click for support]
    Safari Extensions: ℹ️
        avast! Online Security
        Goodshop app
    3rd Party Preference Panes: ℹ️
        DivX  [Click for support]
        Flip4Mac WMV  [Click for support]
        MacFUSE  [Click for support]
    Time Machine: ℹ️
        Skip System Files: NO
        Mobile backups: OFF
        Auto backup: YES
        Volumes being backed up:
            Macintosh HD: Disk size: 438.11 GB Disk used: 86.50 GB
        Destinations:
            Backup [Local]
            Total size: 159.70 GB
            Total number of backups: 3
            Oldest backup: 2014-11-24 05:20:18 +0000
            Last backup: 2015-02-01 03:04:02 +0000
            Size of backup disk: Too small
                Backup size 159.70 GB < (Disk used 86.50 GB X 3)
    Top Processes by CPU: ℹ️
             8%    WindowServer
             5%    DashboardClient
             3%    mds
             2%    launchd
             0%    ocspd
    Top Processes by Memory: ℹ️
        64 MB    WindowServer
        52 MB    thunderbird
        34 MB    mds
        34 MB    Mail
        30 MB    mds_stores
    Virtual Memory Information: ℹ️
        654 MB    Free RAM
        834 MB    Active RAM
        777 MB    Inactive RAM
        903 MB    Wired RAM
        102.49 GB    Page-ins
        1.46 GB    Page-outs
    Diagnostics Information: ℹ️
        Standard users cannot read /Library/Logs/DiagnosticReports.
        Run as an administrator account to see more information.

    Hi Linc!  Sorry for the delay.  Here is the information:
    Start time: 16:48:08 02/28/15
    Revision: 1241
    Model Identifier: iMac10,1
    System Version: OS X 10.10.2 (14C109)
    Kernel Version: Darwin 14.1.0
    Time since boot: 10 days 21:04
    UID: 502
    SerialATA
        ST*******ASQ                          
    USB
        officejet 4200 series (Hewlett Packard)
    Bluetooth
        Apple Wireless Mouse
    FileVault 2: On FileVault master keychain appears to be installed
    FileVault 1: On
    I/O wait time (ms/s)
        launchd (UID 0): 53
    Font issues: 40
    Firewall: On
    System caches/logs
        1987 MB: /System/Library/Caches/com.apple.coresymbolicationd/data
    Diagnostic reports
        2015-01-31 SecurityAgent crash
        2015-02-01 2BUA8C4S2C.com.agilebits.onepassword4-helper crash
        2015-02-01 IMDPersistenceAgent crash
        2015-02-01 secd crash
        2015-02-20 Inkjet7 crash
        2015-02-28 IMDPersistenceAgent crash
        2015-02-28 secd crash x2
    Kernel log
        Feb 23 07:06:08 Failed to get hibernate image filename
        Feb 23 17:07:05 Failed to get hibernate image filename
        Feb 24 07:06:05 Failed to get hibernate image filename
        Feb 24 17:47:13 Failed to get hibernate image filename
        Feb 24 18:31:50 IOAudioStream[0xffffff802df40400]::clipIfNecessary() - Error: counted 1 clip more than one buffer ahead errors.
        Feb 24 19:14:41 Failed to get hibernate image filename
        Feb 24 20:56:40 Failed to get hibernate image filename
        Feb 24 22:14:14 Failed to get hibernate image filename
        Feb 24 22:38:31 Failed to get hibernate image filename
        Feb 25 06:58:23 Failed to get hibernate image filename
        Feb 25 17:40:53 Failed to get hibernate image filename
        Feb 25 21:04:27 Failed to get hibernate image filename
        Feb 25 21:31:52 Failed to get hibernate image filename
        Feb 26 07:03:06 Failed to get hibernate image filename
        Feb 26 17:06:59 Failed to get hibernate image filename
        Feb 27 06:58:56 Failed to get hibernate image filename
        Feb 27 17:02:56 Failed to get hibernate image filename
        Feb 27 19:17:20 Failed to get hibernate image filename
        Feb 27 23:04:12 Failed to get hibernate image filename
        Feb 28 10:09:19 Failed to get hibernate image filename
        Feb 28 13:07:21 Failed to get hibernate image filename
        Feb 28 14:08:38 Failed to get hibernate image filename
        Feb 28 15:11:16 Failed to get hibernate image filename
        Feb 28 16:18:21 msdosfs_fat_uninit_vol: error 6 from msdosfs_fat_cache_flush
        Feb 28 16:29:32 Failed to get hibernate image filename
    System log
            label = "2.5.4.3";
            "localized label" = "2.5.4.3";
            type = string;
            value = "courier.sandbox.push.apple.com";
        Feb 28 16:30:55 loginwindow ERROR | __50-[MCXDLauncher(Private) startNetworkChangeThread:]_block_invoke | Unable to GetMCXAgentPort
        Feb 28 16:31:09 apsd Failed entitlement check 'com.apple.private.aps-connection-initiate' for ManagedClientAgent[8424]
        Feb 28 16:31:44 apsd Failed entitlement check 'com.apple.private.aps-connection-initiate' for ManagedClientAgent[8433]
        Feb 28 16:32:36 WindowServer disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
        Feb 28 16:34:16 WindowServer disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
        Feb 28 16:38:37 WindowServer disable_update_timeout: UI updates were forcibly disabled by application "1Password mini" for over 1.00 seconds. Server has re-enabled them.
        Feb 28 16:38:49 WindowServer WSGetSurfaceInWindow : Invalid surface 769181205 for window 4518
        Feb 28 16:38:49 WindowServer WSGetSurfaceInWindow : Invalid surface 769181205 for window 4518
        Feb 28 16:38:56 WindowServer WSGetSurfaceInWindow : Invalid surface 1023641180 for window 4522
        Feb 28 16:38:56 WindowServer WSGetSurfaceInWindow : Invalid surface 1023641180 for window 4522
        Feb 28 16:39:06 WindowServer WSGetSurfaceInWindow : Invalid surface 1058035653 for window 4525
        Feb 28 16:39:06 WindowServer WSGetSurfaceInWindow : Invalid surface 1058035653 for window 4525
        Feb 28 16:39:22 WindowServer WSGetSurfaceInWindow : Invalid surface 996085260 for window 4530
        Feb 28 16:39:22 WindowServer WSGetSurfaceInWindow : Invalid surface 996085260 for window 4530
        Feb 28 16:39:33 WindowServer WSGetSurfaceInWindow : Invalid surface 1034343505 for window 4534
        Feb 28 16:39:33 WindowServer WSGetSurfaceInWindow : Invalid surface 1034343505 for window 4534
        Feb 28 16:39:39 Google Chrome Helper CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
        Feb 28 16:39:39 Google Chrome Helper CoreText CopyFontsForRequest received mig IPC error (FFFFFFFFFFFFFECC) from font server
        Feb 28 16:46:20 apsd Failed entitlement check 'com.apple.private.aps-connection-initiate' for ManagedClientAgent[8979]
        Feb 28 16:49:02 loginwindow ERROR | __50-[MCXDLauncher(Private) startNetworkChangeThread:]_block_invoke | Unable to GetMCXAgentPort
    Daemons
        com.apple.AccountPolicyHelper
        com.apple.AssetCacheLocatorService
        com.apple.CodeSigningHelper
        com.apple.MobileFileIntegrity
        com.apple.awdd
        com.apple.backupd-auto
        com.apple.cache_delete
        com.apple.coresymbolicationd
        com.apple.ctkd
        com.apple.diagnosticd
        com.apple.emond.aslmanager
        com.apple.iconservices.iconservicesagent
        com.apple.iconservices.iconservicesd
        com.apple.ifdreader
        com.apple.installd
        com.apple.installer.osmessagetracing
        com.apple.nehelper
        com.apple.networkd_privileged
        com.apple.nsurlsessiond_privileged
        com.apple.nsurlstoraged
        com.apple.periodic-daily
        com.apple.periodic-monthly
        com.apple.periodic-weekly
        com.apple.sandboxd
        com.apple.secinitd
        com.apple.security.syspolicy
        - status: -15
        com.apple.softwareupdate_download_service
        com.apple.softwareupdated
        com.apple.spindump
        com.apple.sysmond
        com.apple.systemstatsd
        com.apple.tccd.system
        com.apple.watchdogd
        com.apple.wdhelper
        org.cups.cupsd
    Agents
        2BUA8C4S2C.com.agilebits.onepassword4-helper
        com.adobe.ARM.UUID
        com.apple.AirPortBaseStationAgent
        com.apple.imdpersistence.IMDPersistenceAgent
        - status: -10
        com.apple.secd
        - status: -10
    User crontab
        59 16 * * 7 /Applications/MacScan\ 2/MacScan.app/Contents/MacOS/MacScan -autoscan YES
    Firefox extensions
        Mozilla Firefox hotfix
    Widgets
        iCal
    iCloud errors
        cloudd 7
        comapple.InputMethodKit.UserDictionary 2
        CallHistorySyncHelper 1
    Continuity errors
        sharingd 1
    Restricted files: 174
    Lockfiles: 30
    High file counts
        Desktop: 54
    Accessibility
        Scroll Zoom: On
    Contents of /System/Library/Security/authorization.plist
        - mod date: Oct  9 02:17:00 2014
        - checksum: 2720110640
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>comment</key>
        <string>The name of the requested right is matched against the keys.  An exact match has priority, otherwise the longest match from the start is used. Note that the right will only match wildcard rules (ending in a ".") during this reduction.
        allow rule: this is always allowed
        &lt;key&gt;com.apple.TestApp.benign&lt;/key&gt;
        &lt;string&gt;allow&lt;/string&gt;
        deny rule: this is always denied
        &lt;key&gt;com.apple.TestApp.dangerous&lt;/key&gt;
        &lt;string&gt;deny&lt;/string&gt;
        user rule: successful authentication as a user in the specified group(5) allows the associated right.
        The shared property specifies whether a credential generated on success is shared with other apps (i.e., those in the same "session"). This property defaults to false if not specified.
        The timeout property specifies the maximum age of a (cached/shared) credential accepted for this rule.
        The allow-root property specifies whether a right should be allowed automatically if the requesting process is running with uid == 0.  This defaults to false if not specified.
        See remaining rules for examples.
        </string>
        <key>rights</key>
        <dict>
        <key></key>
        <dict>
        <key>class</key>
        <string>rule</string>
        <key>comment</key>
        ...and 1850 more line(s)
    Contents of /private/etc/authorization.deprecated
        - mod date: Oct 25 13:37:39 2014
        - checksum: 842352627
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>comment</key>
        <string>The name of the requested right is matched against the keys.  An exact match has priority, otherwise the longest match from the start is used. Note that the right will only match wildcard rules (ending in a ".") during this reduction.
        allow rule: this is always allowed
        &lt;key&gt;com.apple.TestApp.benign&lt;/key&gt;
        &lt;string&gt;allow&lt;/string&gt;
        deny rule: this is always denied
        &lt;key&gt;com.apple.TestApp.dangerous&lt;/key&gt;
        &lt;string&gt;deny&lt;/string&gt;
        user rule: successful authentication as a user in the specified group(5) allows the associated right.
        The shared property specifies whether a credential generated on success is shared with other apps (i.e., those in the same "session"). This property defaults to false if not specified.
        The timeout property specifies the maximum age of a (cached/shared) credential accepted for this rule.
        The allow-root property specifies whether a right should be allowed automatically if the requesting process is running with uid == 0.  This defaults to false if not specified.
        See remaining rules for examples.
        </string>
        <key>rights</key>
        <dict>
        <key></key>
        <dict>
        <key>class</key>
        <string>rule</string>
        <key>comment</key>
        ...and 1013 more line(s)
    Contents of /private/etc/pam.d/prl_disp_service
        - mod date: Mar  5 03:24:01 2010
        - checksum: 1160556194
        auth       required       pam_nologin.so
        auth       optional       pam_afpmount.so
        auth       sufficient     pam_securityserver.so nullok
        auth       sufficient     pam_unix.so  nullok
        auth       required       pam_deny.so
        account    required       pam_permit.so
        password   required       pam_deny.so
        session    required       pam_permit.so
        session    optional       pam_afpmount.so
    Contents of /private/etc/pam.d/prl_disp_service.snow_leopard
        - mod date: Mar  5 03:24:01 2010
        - checksum: 2633576920
        auth       optional       pam_krb5.so
        auth       optional       pam_mount.so
        auth       sufficient     pam_serialnumber.so serverinstall legacy
        auth       required       pam_opendirectory.so
        account    required       pam_nologin.so
        account    required       pam_opendirectory.so
        password   required       pam_deny.so
        session    required       pam_launchd.so
        session    required       pam_uwtmp.so
        session    optional       pam_mount.so
        auth       optional       pam_krb5.so
        auth       optional       pam_mount.so
        auth       sufficient     pam_serialnumber.so serverinstall legacy
        auth       required       pam_opendirectory.so
        account    required       pam_nologin.so
        account    required       pam_opendirectory.so
        password   required       pam_deny.so
        session    required       pam_launchd.so
        session    required       pam_uwtmp.so
        session    optional       pam_mount.so
    Contents of Library/LaunchAgents/com.adobe.ARM.UUID.plist
        - mod date: Aug  1 17:37:19 2012
        - checksum: 408149527
        <?xml version="1.0" encoding="UTF-8"?>
        <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
        <plist version="1.0">
        <dict>
        <key>Label</key>
        <string>com.adobe.ARM.UUID</string>
        <key>ProgramArguments</key>
        <array>
        <string>/Applications/Adobe Reader.app/Contents/MacOS/Updater/Adobe Reader Updater Helper.app/Contents/MacOS/Adobe Reader Updater Helper</string>
        </array>
        <key>RunAtLoad</key>
        <true/>
        <key>StartInterval</key>
        <integer>12600</integer>
        </dict>
        </plist>
    Applications
        /Applications/Acrobat 6.0 Professional/Acrobat 6.0.2 Professional.app
        - N/A
        /Applications/Acrobat 6.0 Professional/Acrobat Distiller 6.0.2.app
        - com.adobe.distiller
        /Applications/Adobe/Acrobat.com.app
        - com.adobe.mauby.UUID.1
        /Applications/Adobe/Adobe Help.app
        - chc.UUID.1
        /Applications/Bible Explorer 4.app
        - com.BE8.wordsearchbible.corp
        /Applications/DivX Converter.app
        - N/A
        /Applications/DivX Player.app
        - com.divx.DivX_Player
        /Applications/DivX/DivX Community.app
        - com.spritec.DVD
        /Applications/DivX/DivX Products.app
        - com.spritec.DVD
        /Applications/DivX/DivX Support.app
        - com.spritec.DVD
        /Applications/DivX/Uninstall DivX for Mac.app
        - com.divxinc.uninstalldivxformac
        /Applications/FOX News Live.app
        - FoxPlayerAIR.UUID.1
        /Applications/Flip4Mac/WMV Player.app
        - net.telestream.wmv.player
        /Applications/Garmin Express.app
        - com.garmin.renu.client
        /Applications/Garmin WebUpdater.app
        - com.garmin.WebUpdater
        /Applications/Hewlett-Packard/HP Image Edit.app
        - com.hp.hpimageedit
        /Applications/Hewlett-Packard/HP Image Print.app
        - com.hp.photo.imageprint
        /Applications/Hewlett-Packard/HP Image Zone.app
        - com.hp.imagezone
        /Applications/Hewlett-Packard/HP Instant Share.app
        - com.hp.photo.instantshare
        /Applications/Hewlett-Packard/HP Panorama Stitching.app
        - com.hp.PanoramaStitching
        /Applications/Hewlett-Packard/HP Photo and Imaging Software/HP E-mail Portal/HP E-mail Portal
        - N/A
        /Applications/Hewlett-Packard/HP Photo and Imaging Software/HP Photo and Imaging Director/Director Docker.app
        - com.hp.director.docker
        /Applications/Hewlett-Packard/HP Software Update.app
        - com.hp.softwareupdate
        /Applications/Hewlett-Packard/HP Uninstaller
        - N/A
        /Applications/Karaoke Maker/Audacity.app
        - net.sourceforge.audacity
        /Applications/Macromedia Studio 8/Macromedia Contribute 3/Contribute
        - com.macromedia.Contribute
        /Applications/Macromedia Studio 8/Macromedia Contribute 3/Contribute/Contents/MacOS/Contribute
        - N/A
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8
        - com.macromedia.Dreamweaver
        /Applications/Macromedia Studio 8/Macromedia Extension Manager/Extension Manager.app
        - com.macromedia.ExtensionManager
        /Applications/Macromedia Studio 8/Macromedia Fireworks 8/Fireworks 8.app
        - com.macromedia.fireworks
        /Applications/Macromedia Studio 8/Macromedia Flash 8 VideoEncoder/Flash 8 Video Encoder.app
        - com.macromedia.FLVEncoder
        /Applications/Macromedia Studio 8/Macromedia Flash 8/Flash 8.app
        - com.macromedia.flash.8
        /Applications/Microsoft AutoUpdate.app
        - com.microsoft.autoupdate
        /Applications/Microsoft Office 2004/Additional Tools/Handheld Sync Installer
        - com.MindVision.VISEX
        /Applications/Microsoft Office 2004/Additional Tools/Handheld Sync Installer/Contents/MacOSClassic/Handheld Sync Installer
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Microsoft Language Register/Microsoft Language Register
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Remote Desktop Connection/Remote Desktop Connection
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Remove Office/Remove Office
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Windows Media Installer
        - N/A
        /Applications/Microsoft Office 2004/Additional Tools/Windows Media Installer/Contents/MacOS/Windows Media Installer
        - N/A
        /Applications/Microsoft Office 2004/MSN Messenger.app
        - Microsoft/com.microsoft.Messenger
        /Applications/Microsoft Office 2004/Microsoft Entourage
        - N/A
        /Applications/Microsoft Office 2004/Microsoft Excel
        - N/A
        /Applications/Microsoft Office 2004/Microsoft PowerPoint
        - N/A
        /Applications/Microsoft Office 2004/Microsoft Word
        - N/A
        /Applications/Microsoft Office 2004/Office/Alerts Daemon.app
        - Microsoft/com.microsoft.AlertsDaemon
        /Applications/Microsoft Office 2004/Office/Database Utility
        - N/A
        /Applications/Microsoft Office 2004/Office/Equation Editor
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Cert Manager.app
        - com.microsoft.certmgr
        /Applications/Microsoft Office 2004/Office/Microsoft Clip Gallery
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Database Daemon
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Error Reporting.app
        - com.microsoft.error_reporting
        /Applications/Microsoft Office 2004/Office/Microsoft Graph
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Office Notifications
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Query
        - N/A
        /Applications/Microsoft Office 2004/Office/Microsoft Sync Services.app
        - com.microsoft.entourage.syncservices
        /Applications/Microsoft Office 2004/Office/Organization Chart
        - N/A
        /Applications/Microsoft Office 2004/Office/Project Gallery Launcher
        - N/A
        /Applications/Open XML Converter.app
        - com.microsoft.OfficeConverter
        /Applications/OpenOffice.app
        - org.openoffice.script
        /Applications/Quicken 2007/Quicken 2007
        - com.intuit.quicken
        /Applications/Quicken 2007/Quicken 2007/Contents/MacOS/Quicken 2007
        - N/A
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Emergency Records Organizer
        - com.intuit.ero
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Emergency Records Organizer/Contents/MacOSClassic/Emergency Records Organizer
        - N/A
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Home Inventory.app
        - com.intuit.HomeInventory
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Quicken Backup Utility.app
        - com.intuit.quicken.dotmac
        /Applications/Quicken 2007/Quicken 2007/Contents/SupportApps/Quicken Scheduler
        - N/A
        /Applications/RealPlayer Converter.app
        - com.real.converter
        /Applications/RealPlayer.app
        - com.RealNetworks.RealPlayer
        /Applications/TorBrowser.app
        - N/A
        /Applications/Utilities/Adobe AIR Application Installer.app
        - com.adobe.air.ApplicationInstaller
        /Applications/Utilities/Adobe Utilities.localized/Adobe Updater6/Adobe Updater.app
        - "com.Adobe.ESD.AdobeUpdaterApplication"
        /Library/Application Support/Adobe/AdobePDF.app
        - com.Adobe.print.AdobePDF.bef
        /Library/Application Support/DivX/DivXUpdater.app
        - com.divx.DivXUpdater
        /Library/Application Support/Hewlett-Packard/Software Update/HP Rules Processor.app
        - com.hp.rulesprocessor
        /Library/Application Support/Hewlett-Packard/Software Update/HP Scheduler.app
        - com.hp.HPScheduler
        /Library/Application Support/Hewlett-Packard/Software Update/HP Software Updater
        - N/A
        /Library/Application Support/Hewlett-Packard/Software Update/HP Software Updater/Contents/MacOS/HP Software Updater
        - N/A
        /Library/Application Support/Microsoft/HV1.0/Microsoft Help Viewer.app
        - com.microsoft.helpviewer
        /Library/Application Support/Microsoft/Office Converter Support/Open XML for Charts.app
        - com.microsoft.openxml.chartconverter.app
        /Library/Application Support/Microsoft/Office Converter Support/Open XML for Excel.app
        - com.microsoft.openxml.excel.app
        /Library/Application Support/Microsoft/Office Converter Support/Open XML for Word.app
        - com.microsoft.openxml.word.app
        /Library/Application Support/Microsoft/Office Converter Support/pptfc.app
        - com.microsoft.openxml.powerpoint.app
        /Library/Application Support/Microsoft/Silverlight/OutOfBrowser/SLLauncher.app
        - com.microsoft.silverlight.sllauncher
        /Library/Application Support/Script Editor/Templates/Cocoa-AppleScript Applet.app
        - com.apple.ScriptEditor.id.cocoa-applet-template
        /Library/Application Support/Script Editor/Templates/Droplets/Droplet with Settable Properties.app
        - com.apple.ScriptEditor.id.droplet-with-settable-properties-template
        /Library/Application Support/Script Editor/Templates/Droplets/Recursive File Processing Droplet.app
        - com.apple.ScriptEditor.id.file-processing-droplet-template
        /Library/Application Support/Script Editor/Templates/Droplets/Recursive Image File Processing Droplet.app
        - com.apple.ScriptEditor.id.image-file-processing-droplet-template
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/flashplayer
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_burn_cd.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_export_images.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_import_images.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_panorama_stitch.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_use_folders.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_use_image_edit.app
        - N/A
        /Library/Documentation/Help/HP Photo and Imaging Help/shrd/fscommand/c_use_image_print.app
        - N/A
        /Library/Documentation/User Guides and Information.localized/Apple Hardware Test Read Me.app
        - com.apple.AppleHardwareTestReadMe
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Adobe AIR Application Installer.app
        - com.adobe.air.ApplicationInstaller
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Template.app
        - com.adobe.air.Template
        /Library/Image Capture/Scripts/Import and View with iPhoto.app
        - com.hp.iPhoto.icautotask
        /Library/Parallels/Parallels Mounter.app
        - com.parallels.server.mounter
        /Library/Printers/hp/Fax/fax.backend
        - com.hp.fax
        /Library/Printers/hp/Fax/rastertofax.filter
        - com.hp.rastertofax
        /Library/Printers/hp/cups/filters/commandtohp.filter
        - com.hp.print.cups.filter.commandtohp
        /Library/Printers/hp/cups/filters/pdftopdf.filter
        - com.hp.print.cups.filter.pdftopdf
        /Library/Printers/hp/cups/tools/autosetup.tool
        - com.hp.print.autosetup
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_bepbmhgboaologfdajaanbcjmnhjmhfn/Default bepbmhgboaologfdajaanbcjmnhjmhfn.app
        - com.google.Chrome.app.Default-bepbmhgboaologfdajaanbcjmnhjmhfn-internal
        /Users/USER/Library/Application Support/Google/Chrome/Default/Web Applications/_crx_blpcfgokakmgnkcojhhkbfbldkacnbeo/Default blpcfgokakmgnkcojhhkbfbldkacnbeo.app
        - com.google.Chrome.app.Default-blpcfgokakmgnkcojhhkbfbldkacnbeo-internal
        /Users/USER/Library/Caches/com.adobe.Reader.ARM/UUID/Adobe Reader Updater.app
        - com.adobe.ARM
        /mike's old computer/Adobe/AdobePDF.app
        - com.Adobe.print.AdobePDF.bef
        /mike's old computer/Adobe/Installers/R2/Setup.app
        - com.adobe.Installers.Setup
        /mike's old computer/Deimos Rising/Deimos Rising
        - N/A
        /mike's old computer/IA_Installers/TypingMaster_for_Mac/TypingMasterMac.app
        - N/A
        /mike's old computer/TypingMasterMac/UninstallerData/Uninstall TypingMaster for Mac.app
        - N/A
        /mike's old computer/TypingMasterMac/itutoreng.app
        - N/A
        /mike's old computer/adobe applications/Adobe GoLive CS/Adobe GoLive CS.app
        - com.adobe.GoLive
        /mike's old computer/adobe applications/Adobe Illustrator CS/2.app
        - com.adobe.illustrator
        /mike's old computer/adobe applications/Adobe InDesign CS/InDesign CS.app
        - com.adobe.InDesign
        /mike's old computer/adobe applications/Adobe InDesign CS/Plug-Ins/Online/AUMLibrary.cfm/Contents/SharedSupport/Adobe Update Manager.app
        - com.adobe.ESD.AUM
        /mike's old computer/adobe applications/Adobe Photoshop CS/Adobe ImageReady CS.app
        - com.adobe.ImageReady
        /mike's old computer/adobe applications/Adobe Photoshop CS/Adobe Photoshop CS.app
        - com.adobe.Photoshop
        /mike's old computer/adobe applications/Adobe Version Cue/Uninstall Adobe Version Cue.app
        - N/A
        /old computer stuff/At Ease Setup Folder/At Ease Setup
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Apple System Profiler
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Calculator
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Chooser
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/FaxStatus
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Graphing Calculator
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Internet Access/Browse the Internet
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Internet Access/Connect To...
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Internet Access/Mail
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Key Caps
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Note Pad
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Remote Access Status
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Scrapbook
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Sherlock
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/SimpleSound
        - N/A
        /old computer stuff/OLDIESystem Folder/Apple Menu Items/Stickies
        - N/A
        /old computer stuff/OLDIESystem Folder/Application Support/IntelliTools/Classic Sending Helper
        - N/A
        /old computer stuff/OLDIESystem Folder/Application Support/Norton AntiVirus ƒ/NAV Small Scanner
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Appearance
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Apple Menu Options
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/AppleTalk
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/ColorSync
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Configuration Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Control Strip
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Date & Time
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/DialAssist
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Energy Saver
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Extensions Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/File Exchange
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/File Sharing
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/General Controls
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Infrared
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Internet
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Keyboard
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Location Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Memory
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Microsoft Office Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Modem
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Monitors & Sound
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Mouse
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Numbers
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/QuickTime™ Settings:™ Settings:
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/QuikSync
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Remote Access
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Speech
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Startup Disk
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/TCP:IP
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Text
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Users & Groups
        - N/A
        /old computer stuff/OLDIESystem Folder/Control Panels/Web Sharing
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Application Switcher
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/ColorSync Extension
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Control Strip Extension
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Desktop PrintMonitor
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Desktop Printer Spooler
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/FBC Indexing Scheduler
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/FaxMonitor
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Find/Find by Content Indexing
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Folder Actions
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Norton Scheduler
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/PrintMonitor
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Time Synchronizer
        - N/A
        /old computer stuff/OLDIESystem Folder/Extensions/Web Sharing Extension
        - N/A
        /old computer stuff/OLDIESystem Folder/Help/Apple Help Viewer/Help Viewer
        - N/A
        /old computer stuff/OLDIESystem Folder/MacTCP DNR
        - N/A
        /old computer stuff/OLDIESystem Folder/Scripting Additions/Desktop Printer Manager
        - N/A
        /old computer stuff/OLDIESystem Folder/Scripting Additions/Network Setup Scripting
        - N/A
        /old computer stuff/OLDIESystem Folder/Scripting Additions/URL Access Scripting
        - N/A
        /old computer stuff/OLDIESystem Folder/System Extensions (Disabled)/AOL 5.0 Backup Installer
        - N/A
        /old computer stuff/Tony Hawk's Pro Skater 4/Tony Hawk's Pro Skater 4.app
        - com.aspyr.thps4
    Frameworks
        /Library/Frameworks/Adobe AIR.framework
        - com.adobe.AIR
        /Library/Frameworks/DivX Toolkit.framework
        - com.divx.divxtoolkit
        /Library/Frameworks/EWSMac.framework
        - com.eSellerate.EWSMac67108868
        /Library/Frameworks/HPSmartPrint.framework
        - com.hp.print.HPSmartPrint
        /Library/Frameworks/MacFUSE.framework
        - com.google.MacFUSE
        /Library/Frameworks/PrintMeSSL.framework
        - com.efi.printme.ssl
        /Library/Frameworks/TSLicense.framework
        - net.telestream.license
    PrefPane
        /Library/PreferencePanes/DivX.prefPane
        - com.divx.divxprefs
        /Library/PreferencePanes/Flip4Mac WMV.prefPane
        - net.telestream.wmv.prefpane
        /Library/PreferencePanes/MacFUSE.prefPane
        - com.google.MacFUSE
    Bundles
        /Library/Audio/MIDI Drivers/EmagicUSBMIDIDriver.plugin
        - info.emagic.driver.unitor
        /Library/Contextual Menu Items/ParallelsCM.plugin
        - com.parallels.cmplugin
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/AdobeCP15.plugin
        - com.adobe.adobecp
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/Flash Player.plugin
        - com.macromedia.FlashPlayer-10.6.plugin
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/adobecp.plugin
        - com.adobe.adobecp20
        /Library/Internet Plug-Ins/AdobePDFViewer.plugin
        - com.adobe.acrobat.pdfviewer
        /Library/Internet Plug-Ins/AdobePDFViewerNPAPI.plugin
        - com.adobe.acrobat.pdfviewerNPAPI
        /Library/Internet Plug-Ins/DivXBrowserPlugin.plugin
        - com.divx.DivXBrowserPlugin
        /Library/Internet Plug-Ins/Flip4Mac WMV Plugin.plugin
        - net.telestream.wmv.plugin
        /Library/Internet Plug-Ins/GarminGpsControl.plugin
        - com.garmin.GarminGpsControl
        /Library/Internet Plug-Ins/Google Earth Web Plug-in.plugin
        - com.Google.GoogleEarthPlugin.plugin
        /Library/Internet Plug-Ins/Silverlight.plugin
        - com.microsoft.SilverlightPlugin
        /Library/Internet Plug-Ins/googletalkbrowserplugin.plugin
        - com.google.googletalkbrowserplugin
        /Library/Internet Plug-Ins/iPhotoPhotocast.plugin
        - com.apple.plugin.iPhotoPhotocast
        /Library/Internet Plug-Ins/o1dbrowserplugin.plugin
        - com.google.o1dbrowserplugin
        /Library/Printers/Macromedia/PDEs/FlashPaperPDE.plugin
        - com.macromedia.flashpaper.pde.FlashPaperPDE
        /Library/Printers/PPD Plugins/AdobePDFPDE.plugin
        - com.Adobe.print.AdobePDF.pde
        /Library/QuickLook/GBQLGenerator.qlgenerator
        - com.apple.garageband.quicklookgenerator
        /Library/QuickLook/ParallelsQL.qlgenerator
        - com.parellels.quicklookgenerator
        /Library/Spotlight/GBSpotlightImporter.mdimporter
        - com.apple.garageband.spotlightimporter
        /Library/Spotlight/Microsoft Entourage.mdimporter
        - com.microsoft.entourageMDImporter
        /Library/Spotlight/ParallelsMD.mdimporter
        - com.parallels.mdimporter
        /Users/USER/Library/Application Support/Google/Chrome/PepperFlash/12.0.0.70/PepperFlashPlayer.plugin
        - com.macromedia.PepperFlashPlayer.pepper
        /Users/USER/Library/Internet Plug-Ins/CitrixOnlineWebDeploymentPlugin.plugin
        - com.citrixonline.mac.WebDeploymentPlugin
    Library paths
        /Applications/Karaoke Maker/libmp3lame.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/Frameworks/libwchar.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/CoreTypes.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/LibCURL.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/LibCrypto.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/LibSSL.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/SystemFrameworkUtils.dylib
        /Applications/Macromedia Studio 8/Macromedia Dreamweaver 8/Dreamweaver 8/Contents/MacOS/ZLib.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/DWANative.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/ARKCmdCaps.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/ARKCmdFS.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/ARKEngine.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/DWA/resources/libraries/AdobePIM.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/PWANative.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/adobe_caps.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/adobe_oobelib.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/LWA/adobe_upgrade.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/UWA/UWANative.dylib
        /Library/Application Support/Adobe/OOBE/PDApp/core/AdobePIM.dylib
        /Library/Application Support/DivX/Libraries/libDivXDesktopSupport.dylib
        /Library/Application Support/DivX/QtPlugins/accessible/libqtaccessiblewidgets.dylib
        /Library/Application Support/DivX/QtPlugins/iconengines/libqsvgicon.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqgif.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqico.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqjpeg.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqmng.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqsvg.dylib
        /Library/Application Support/DivX/QtPlugins/imageformats/libqtiff.dylib
        /Library/Application Support/DivX/QtPlugins/script/libqtscriptdbus.dylib
        /Library/Application Support/DivX/QtPlugins/sqldrivers/libqsqlite.dylib
        /Library/Frameworks/Adobe AIR.framework/Versions/1.0/Resources/WebKit.dylib
        /Library/Frameworks/MacFUSE.framework/Versions/A/Resources/Debug/libfuse.dylib. dSYM/Contents/Resources/DWARF/libfuse.dylib
        /Library/Frameworks/MacFUSE.framework/Versions/A/Resources/Debug/libfuse_ino64. dylib.dSYM/Contents/Resources/DWARF/libfuse_ino64.dylib
        /Library/Printers/hp/Frameworks/HPDeviceModel.framework/Versions/3.0/Frameworks /Core.framework/Versions/3.0/Libraries/libHPIOnetsnmp.5.dylib
        /Library/Printers/hp/Frameworks/HPSmartX.framework/Versions/B/Resources/lib/SxC FReader.dylib
        /Library/Printers/hp/Frameworks/HPSmartX.framework/Versions/C/Resources/lib/SxC FReader.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libnspr4.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libnssckbi.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libplc4.dylib
        /Users/USER/Library/Application Support/AOL Desktop/Security/libplds4.dylib
        /Users/USER/Library/Application Support/Firefox/Profiles/w5owlxqa.default/gmp-gmpopenh264/1.1/libgmpopenh264.dy lib
        /Users/USER/Library/Application Support/Google/Chrome/WidevineCDM/1.4.6.758/_platform_specific/mac_x64/libwidev inecdm.dylib
        /Users/USER/Library/Caches/com.apple.ScreenSaver.Engine/com.apple.vision/com.ap ple.vision.64FaceCoreCLKernel.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libpbodbc3.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-jni-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-pb-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-rw-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/libps-util-gcc2-v8_50.dylib
        /mike's old computer/adobe applications/Adobe Version Cue/tomcat/webapps/ROOT/WEB-INF/components/com.adobe.bauhaus.nativecomm/res/VCF oundation.dylib
        /usr/lib/libgutenprint.2.0.3.dylib
        /usr/local/lib/libfreetype.6.3.16.dylib
        /usr/local/lib/libfreetype.6.dylib
        /usr/local/lib/libfreetype.dylib
        /usr/local/lib/libfuse.2.dylib
        /usr/local/lib/libfuse_ino64.2.dylib
    Installations
        Norton AntiVirus Application: 6/20/10, 10:21 PM
        Symantec Scheduler: 6/20/10, 10:21 PM
        Microsoft® Silverlight™ Browser Plug-In: 6/19/10, 8:25 PM
        Parallels Desktop 5 for Mac: 6/10/10, 6:02 AM
        MacFUSE Core: 6/10/10, 6:03 AM
    Elapsed time (sec): 317
    <Edited By Host>

  • My iMac is running very slow

    My iMac is now running very slow.  Every process/application lags, safari, iPhoto, pages, iTunes, etc.  Beach ball just spins and spins.....
    I have an early 2008 iMac with 2.66 GHz Intel Core 2 Duo processor, 2 GB 800 MHz DDR2 SDRAM memory, 320 GB SATA Disk storage with 30GB free.  I just upgraded to OS X Yosemite 10.10.1 hoping it would help solve the problem but no luck.
    I ran "syslog -k Sender kernel -k Message CReq 'Channel t|GPU D|I/O|n Cause: -' | tail | open -ef" in the terminal window and received the following in the text window....
    Jan 14 00:18:17 X-imac-2 kernel[0] <Notice>: Process systemmigrationd [146] disabling system-wide I/O Throttling
    --- last message repeated 5 times ---
    Any help is greatly appreciated. Thanks

    Thanks Linc for your help!  Here is the logs from Console:
    1/17/15 10:02:48.283 AM com.apple.xpc.launchd[1]: (com.apple.PhotoApps.AVCHDConverter) Unknown key for dictionary: EnvironmentVarialbles
    1/17/15 10:02:48.283 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 10:03:08.258 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "iPhoto" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 10:03:14.986 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "iPhoto" after 7.73 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 10:03:21.834 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "iPhoto" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 10:03:35.834 AM WindowServer[119]: disable_update_likely_unbalanced: UI updates still disabled by application "iPhoto" after 15.00 seconds (server forcibly re-enabled them after 1.00 seconds). Likely an unbalanced disableUpdate call.
    1/17/15 10:03:36.125 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "iPhoto" after 15.29 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 10:03:37.950 AM iPhoto[733]: void CGSUpdateManager::log() const: conn 0xe2ab: spurious update.
    1/17/15 10:03:38.799 AM com.apple.SecurityServer[54]: Session 100029 created
    1/17/15 10:03:39.179 AM com.apple.SecurityServer[54]: Killing auth hosts
    1/17/15 10:03:39.179 AM com.apple.SecurityServer[54]: Session 100028 destroyed
    1/17/15 10:03:46.317 AM iPhoto[733]: The function ‘CGContextClear’ is obsolete and will be removed in an upcoming update. Unfortunately, this application, or a library it uses, is using this obsolete function, and is thereby contributing to an overall degradation of system performance.
    1/17/15 10:04:42.124 AM sandboxd[606]: ([626]) com.apple.metada(626) deny mach-lookup com.apple.cfnetwork.cfnetworkagent
    1/17/15 10:04:51.507 AM sandboxd[606]: ([626]) com.apple.metada(626) deny mach-lookup com.apple.cfnetwork.cfnetworkagent
    1/17/15 10:04:54.150 AM sandboxd[606]: ([626]) com.apple.metada(626) deny mach-lookup com.apple.cfnetwork.cfnetworkagent
    1/17/15 10:04:56.942 AM com.apple.xpc.launchd[1]: (com.apple.quicklook[746]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.quicklook
    1/17/15 10:05:10.094 AM Console[749]: Failed to connect (_consoleX) outlet from (NSApplication) to (ConsoleX): missing setter or instance variable
    1/17/15 10:05:19.067 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "Console" for over 1.00 seconds. Server has re-enabled them.
    Here are a few other lines from earlier that my also be helpful.  Most of these are repeated over and over.
    1/16/15 4:43:20.000 PM kernel[0]: BUG in process suhelperd[452]: over-released legacy external boost assertions (1 total, 1 external, 0 legacy-external)
    1/16/15 5:31:07.775 PM Safari[6461]: Communications error: <OS_xpc_error: <error: 0x7fff745dab60> { count = 1, contents =
      "XPCErrorDescription" => <string: 0x7fff745dafa8> { length = 22, contents = "Connection interrupted" }
    }>
    1/16/15 5:57:11.000 PM kernel[0]: memorystatus_thread: idle exiting pid 5527 [CoreServicesUIAg]
    1/16/15 6:11:37.704 PM nsurlstoraged[6907]: ERROR: shrinkDB - unable to start a DB transaction.  Error-code=5
    1/16/15 6:13:49.644 PM com.apple.xpc.launchd[1]: (com.apple.auditd[6976]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.auditd
    1/16/15 6:13:50.077 PM kellerct[6980]: audit warning: soft /var/audit
    1/16/15 6:13:50.077 PM kellerct[6979]: audit warning: allsoft
    1/16/15 6:13:50.587 PM kellerct[6982]: audit warning: closefile /var/audit/20150117001305.20150117001349
    1/16/15 6:16:26.093 PM nsurlstoraged[6907]: Error: execSQLStatement:onConnection:toCompletionWithRetry - SQL=COMMIT;, error-code=1, error-message=cannot commit - no transaction is active
    1/17/15 7:18:17.197 AM BezelServices 245.23[67]: ASSERTION FAILED: dvcAddrRef != ((void *)0) -[DriverServices getDeviceAddress:] line: 2602
    This is from this morning when it took almost 15 mins to fully wake up:
    1/17/15 7:53:08.866 AM WindowServer[119]: CGXDisplayDidWakeNotification [30972791675783]: posting kCGSDisplayDidWake
    1/17/15 7:53:08.866 AM WindowServer[119]: handle_will_sleep_auth_and_shield_windows: Deferring.
    1/17/15 7:54:42.460 AM com.apple.backupd[223]: Copied 51.64 GB of 118.69 GB, 161123 of 201178 items
    1/17/15 7:55:57.306 AM SecurityAgent[174]: User info context values set for kellerct
    1/17/15 7:55:58.186 AM com.apple.xpc.launchd[1]: (com.apple.auditd[354]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.auditd
    1/17/15 7:55:59.176 AM kellerct[359]: audit warning: soft /var/audit
    1/17/15 7:55:59.176 AM kellerct[360]: audit warning: closefile /var/audit/20150117051759.20150117135558
    1/17/15 7:55:59.178 AM kellerct[358]: audit warning: allsoft
    1/17/15 7:55:59.852 AM com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:00.003 AM com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    1/17/15 7:56:00.003 AM com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    1/17/15 7:56:00.196 AM com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    1/17/15 7:56:00.196 AM com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    1/17/15 7:56:00.289 AM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    1/17/15 7:56:00.314 AM com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    1/17/15 7:56:03.337 AM SecurityAgent[174]: Login Window login proceeding
    1/17/15 7:56:04.965 AM loginwindow[67]: Login Window - Returned from Security Agent
    1/17/15 7:56:05.200 AM loginwindow[67]: USER_PROCESS: 67 console
    1/17/15 7:56:06.000 AM kernel[0]: AppleKeyStore:Sending lock change 0 for handle -501
    1/17/15 7:56:06.381 AM com.apple.xpc.launchd[1]: (com.apple.AssistiveControl.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.381 AM com.apple.xpc.launchd[1]: (com.apple.btsa) This key does not do anything: OnDemand
    1/17/15 7:56:06.382 AM com.apple.xpc.launchd[1]: (com.apple.coreservices.lsactivity) Unknown key for Boolean: DrainMessagesAfterFailedInit
    1/17/15 7:56:06.383 AM com.apple.xpc.launchd[1]: (com.apple.coreservices.uiagent) This key does not do anything: OnDemand
    1/17/15 7:56:06.383 AM com.apple.xpc.launchd[1]: (com.apple.diagnostics_agent) This service is defined to be constantly running and is inherently inefficient.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.dock.fullscreen) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.dock.server) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.dock.notificationcenter) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.dock.appstore) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.dock.remotedesktoppicture) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.dock.launchpad) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.dock.downloads) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.EscrowSecurityAlert) Unknown key for string: seatbelt-profiles
    1/17/15 7:56:06.384 AM com.apple.xpc.launchd[1]: (com.apple.Finder) ThrottleInterval set to zero. You're not that important. Ignoring.
    1/17/15 7:56:06.385 AM com.apple.xpc.launchd[1]: (com.apple.FontRegistryUIAgent) This key does not do anything: OnDemand
    1/17/15 7:56:06.385 AM com.apple.xpc.launchd[1]: (com.apple.ATS.FontValidator) This key does not do anything: OnDemand
    1/17/15 7:56:06.385 AM com.apple.xpc.launchd[1]: (com.apple.ATS.FontValidatorConduit) This key does not do anything: OnDemand
    1/17/15 7:56:06.385 AM com.apple.xpc.launchd[1]: (com.apple.gamed) The JetsamProperties key is not available on this platform.
    1/17/15 7:56:06.385 AM com.apple.xpc.launchd[1]: (com.apple.gamed) This key does not do anything: OnDemand
    1/17/15 7:56:06.385 AM com.apple.xpc.launchd[1]: (com.apple.gamed) The ServiceIPC key is no longer respected. Please remove it.
    1/17/15 7:56:06.385 AM com.apple.xpc.launchd[1]: (com.apple.helpd) This key does not do anything: OnDemand
    1/17/15 7:56:06.386 AM com.apple.xpc.launchd[1]: (com.apple.installd.user) This key does not do anything: OnDemand
    1/17/15 7:56:06.387 AM com.apple.xpc.launchd[1]: (com.apple.Maps.mapspushd) Unknown key for double: StartInterval
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.user.501.100006.Aqua) Caller tried to hijack service: path = /System/Library/LaunchAgents/com.apple.mbpluginhost.user.plist, caller = loginwindow.67
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.midiserver.io) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.noticeboard.agent) This key does not do anything: OnDemand
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.notificationcenterui.alerts) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.notificationcenterui.tcc) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.notificationcenterui.agent) This service is defined to be constantly running and is inherently inefficient.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.user.501.100006.Aqua) Caller tried to hijack service: path = /System/Library/LaunchAgents/com.apple.pluginkit.pkd.plist, caller = loginwindow.67
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.PubSub.Agent) The ServiceIPC key is no longer respected. Please remove it.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.quicklook.ui.helper.active) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.ReportCrash) The DrainMessagesOnCrash key is not yet implemented. If you rely on this key, please file a bug.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.ReportCrash.Self) The DrainMessagesOnCrash key is not yet implemented. If you rely on this key, please file a bug.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.rtcreportingd) The UserName key is not supported for non-System services.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.sharingd) This service is defined to be constantly running and is inherently inefficient.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.soagent) Invalid type for event (event/type): events/array
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.soagent) Invalid type for event (event/type): bundleid/string
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.speech.speechdatainstallerd) This key does not do anything: OnDemand
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.ssinvitationagent) This key does not do anything: OnDemand
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.systemuiserver.ServiceProvider) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.395 AM com.apple.xpc.launchd[1]: (com.apple.dockextra.server) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.SUISMessaging) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.ipodserver) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.systemuiserver.screencapture) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.tsm.uiserver) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.dockling.server) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.window_proxies.startup) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.window_proxies) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.inputswitcher.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.universalaccesscontrol.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.universalaccessd.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.396 AM com.apple.xpc.launchd[1]: (com.apple.UserEventAgent-Aqua) This service is defined to be constantly running and is inherently inefficient.
    1/17/15 7:56:06.487 AM com.apple.xpc.launchd[1]: (com.apple.usernoted) This service is defined to be constantly running and is inherently inefficient.
    1/17/15 7:56:06.487 AM com.apple.xpc.launchd[1]: (com.apple.VoiceOver.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.488 AM com.apple.xpc.launchd[1]: (com.apple.ZoomWindow.running) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:56:06.488 AM com.apple.xpc.launchd[1]: (org.openbsd.ssh-agent) The ServiceIPC key is no longer respected. Please remove it.
    1/17/15 7:56:06.488 AM com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.user.501.100006.Aqua) Failed to bootstrap path: path = /System/Library/LaunchAgents/com.apple.pluginkit.pkd.plist, error = 17: File exists
    1/17/15 7:56:06.488 AM com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.user.501.100006.Aqua) Failed to bootstrap path: path = /System/Library/LaunchAgents/com.apple.mbpluginhost.user.plist, error = 17: File exists
    1/17/15 7:56:09.953 AM lsregister[369]: LaunchServices: Begin database seeding
    1/17/15 7:56:09.954 AM lsregister[369]: LaunchServices: Completed database seeding
    1/17/15 7:56:11.822 AM UserEventAgent[366]: Failed to copy info dictionary for bundle /System/Library/UserEventPlugins/alfUIplugin.plugin
    1/17/15 7:56:12.064 AM com.apple.xpc.launchd[1]: (com.apple.xpc.launchd.user.501.100006.Aqua) Could not import service from caller: caller = otherbsd.367, service = com.apple.photostream-agent, error = 119: Service is disabled
    1/17/15 7:56:12.064 AM otherbsd[367]: Could not submit LoginItem job com.apple.photostream-agent: 119: Service is disabled
    1/17/15 7:56:12.797 AM UserEventAgent[366]: user agent networkd: built Sep  9 2014 16:11:57
    1/17/15 7:56:13.843 AM UserEventAgent[366]: received an unknown event from daemon
    1/17/15 7:56:14.492 AM nsurlsessiond[373]: No directory for bundleID: com.apple.cloudd
    1/17/15 7:56:15.361 AM apsd[51]: Peer [pid=372] requested push wake but lacks APSPushWakeEntitlement
    1/17/15 7:56:17.800 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:56:17.833 AM secinitd[375]: UID[501]: cache loaded: /System/Library/Caches/com.apple.app-sandbox-cache.plist
    1/17/15 7:56:20.808 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:56:23.953 AM CalendarAgent[374]: Exception fetching ABCDContact in context <ABManagedObjectContext: 0x7fa46a629e50>: keypath birthdayComponents not found in entity <NSSQLEntity ABCDContact id=21>
    1/17/15 7:56:23.954 AM CalendarAgent[374]: Error fetching ABCDContact in context <ABManagedObjectContext: 0x7fa46a629e50>: (null) (null)
    1/17/15 7:57:44.128 AM apsd[51]: Attempt to set push wake topics without dark wake enabled: ()
    1/17/15 7:57:44.130 AM apsd[51]: Attempt to set push wake topics without dark wake enabled: ()
    1/17/15 7:57:44.132 AM apsd[51]: Attempt to set push wake topics without dark wake enabled: ()
    1/17/15 7:57:44.903 AM askpermissiond[382]: objc[382]: Class FALogging is implemented in both /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/FamilyCircl e and /System/Library/PrivateFrameworks/FamilyNotification.framework/Versions/A/Famil yNotification. One of the two will be used. Which one is undefined.
    1/17/15 7:57:44.921 AM askpermissiond[382]: StoreTransport: Resetting APS Connection using environment name production
    1/17/15 7:57:45.283 AM fmfd[383]: Initialized sandbox
    1/17/15 7:57:45.555 AM com.apple.xpc.launchd[1]: (com.apple.lakitu) The JoinExistingSession key is only available to Application services.
    1/17/15 7:57:45.555 AM com.apple.xpc.launchd[1]: (com.apple.accounts.dom) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:57:45.633 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:57:46.198 AM com.apple.iCloudHelper[384]: objc[384]: Class FALogging is implemented in both /System/Library/PrivateFrameworks/FamilyCircle.framework/Versions/A/FamilyCircl e and /System/Library/PrivateFrameworks/FamilyNotification.framework/Versions/A/Famil yNotification. One of the two will be used. Which one is undefined.
    1/17/15 7:57:46.252 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:57:46.532 AM apsd[51]: Peer [pid=383] requested push wake but lacks APSPushWakeEntitlement
    1/17/15 7:57:47.247 AM cloudd[385]: Could not create primary backing account
    1/17/15 7:57:56.509 AM identityservicesd[387]: [Warning] DeviceHeartbeat - Failed loading device heartbeat data from keychain -25300
    1/17/15 7:57:57.405 AM com.apple.xpc.launchd[1]: (com.apple.DataDetectorsDynamicData) The JoinExistingSession key is only available to Application services.
    1/17/15 7:57:57.411 AM com.apple.xpc.launchd[1]: (com.apple.FileSyncAgent.PHD.isRunning) The HideUntilCheckIn property is an architectural performance issue. Please transition away from it.
    1/17/15 7:57:57.413 AM com.apple.xpc.launchd[1]: (com.apple.mbloginhelper.user) This key does not do anything: OnDemand
    1/17/15 7:57:57.413 AM com.apple.xpc.launchd[1]: (com.apple.mbpluginhost.user) This key does not do anything: OnDemand
    1/17/15 7:57:57.419 AM com.apple.xpc.launchd[1]: (com.apple.secd) This key does not do anything: OnDemand
    1/17/15 7:57:57.419 AM com.apple.xpc.launchd[1]: (com.apple.secd) The ServiceIPC key is no longer respected. Please remove it.
    1/17/15 7:57:57.420 AM com.apple.xpc.launchd[1]: (com.apple.speech.speechsynthesisd) This key does not do anything: OnDemand
    1/17/15 7:57:57.422 AM com.apple.xpc.launchd[1]: (com.apple.TrustEvaluationAgent) This key does not do anything: OnDemand
    1/17/15 7:57:58.448 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelDevice.
    1/17/15 7:57:58.448 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDRadeonX4000_AMDAccelSharedUserClient.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class AMDSIVideoContext.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class Gen6DVDContext.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelDevice.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelSharedUserClient.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMain.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextMedia.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IGAccelVideoContextVEBox.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOHIDParamUserClient.
    1/17/15 7:57:58.449 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the IOKit user-client class IOSurfaceRootUserClient.
    1/17/15 7:57:58.450 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.AirPlayXPCHelper.
    1/17/15 7:57:58.450 AM com.apple.audio.DriverHelper[391]: The plug-in named AirPlay.driver requires extending the sandbox for the mach service named com.apple.wirelessproxd.
    1/17/15 7:57:58.695 AM com.apple.xpc.launchd[1]: (com.apple.appkit.xpc.sandboxedServiceRunner) The JoinExistingSession key is only available to Application services.
    1/17/15 7:57:59.801 AM coreaudiod[390]: 2015-01-17 07:57:59.801136 AM [AirPlay] BTLE discovery removing all devices
    1/17/15 7:57:59.803 AM coreaudiod[390]: 2015-01-17 07:57:59.802622 AM [AirPlay] Resetting AWDL traffic registration.
    1/17/15 7:57:59.803 AM coreaudiod[390]: 2015-01-17 07:57:59.802933 AM [AirPlay] Deregister AirPlay traffic for AWDL at MAC 00:00:00:00:00:00 with target infra non critical PeerIndication=0 err=-3900
    1/17/15 7:57:59.981 AM com.apple.xpc.launchd[1]: (com.apple.imdmessageservices.IMDMessageServicesAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:57:59.984 AM com.apple.audio.DriverHelper[391]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the IOKit user-client class IOBluetoothDeviceUserClient.
    1/17/15 7:57:59.984 AM com.apple.audio.DriverHelper[391]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.blued.
    1/17/15 7:57:59.984 AM com.apple.audio.DriverHelper[391]: The plug-in named BluetoothAudioPlugIn.driver requires extending the sandbox for the mach service named com.apple.bluetoothaudiod.
    1/17/15 7:58:00.144 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:58:00.336 AM discoveryd[50]: AwdlD2d AwdlD2dStartBrowsingForKey: '_airplay' Browsing service started
    1/17/15 7:58:00.336 AM discoveryd[50]: AwdlD2d AwdlD2dStartBrowsingForKey: '_raop' Browsing service started
    1/17/15 7:58:00.390 AM coreaudiod[390]: Logging disabled
    1/17/15 7:58:00.425 AM coreaudiod[390]: 2015-01-17 07:58:00.425163 AM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM/44100/16/2 for output and  for input
    1/17/15 7:58:00.425 AM coreaudiod[390]: 2015-01-17 07:58:00.425361 AM [AirPlay] AirPlay: Performing audio format change for 4 (AP Out) to PCM/44100/16/2 for output and  for input
    1/17/15 7:58:00.457 AM logind[66]: -[SessionManager getClient:withRole:inAuditSession:]:241: ERROR: No session dictionary for audit session 100010
    1/17/15 7:58:00.457 AM logind[66]: _SMGetSessionAgent:73: ERROR: __SMGetClientForAuditSessionAgent failed 2
    1/17/15 7:58:00.457 AM IMDPersistenceAgent[394]: SACShieldWindowShowing:925: ERROR: NULL response
    1/17/15 7:58:00.854 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:58:01.140 AM bluetoothaudiod[395]: Logging disabled
    1/17/15 7:58:01.344 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>: Configuring notification center for identifier: com.apple.iChat   topics: (
    1/17/15 7:58:01.447 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>:    NC Disabled: NO
    1/17/15 7:58:01.453 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>:   DND Enabled: NO
    1/17/15 7:58:01.453 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>: Updating enabled: YES   (Topics: (
    1/17/15 7:58:01.473 AM com.apple.xpc.launchd[1]: (com.apple.imtransferservices.IMTransferAgent) The _DirtyJetsamPriority key is not available on this platform.
    1/17/15 7:58:01.473 AM com.apple.xpc.launchd[1]: (com.apple.imtransferservices.IMTransferAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:58:01.474 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:58:01.509 AM CallHistorySyncHelper[381]: [Warning] Services all disappeared, removing all dependent devices
    1/17/15 7:58:01.509 AM callservicesd[389]: [Warning] Services all disappeared, removing all dependent devices
    1/17/15 7:58:01.534 AM com.apple.xpc.launchd[1]: (com.apple.auditd[398]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.auditd
    1/17/15 7:58:01.537 AM pboard[396]: Attempt to unlink previous shared memory during startup returned an error.  Continuing...
    1/17/15 7:58:01.541 AM imagent[392]: [Warning] Services all disappeared, removing all dependent devices
    1/17/15 7:58:01.662 AM kellerct[401]: audit warning: allsoft
    1/17/15 7:58:01.663 AM kellerct[402]: audit warning: soft /var/audit
    1/17/15 7:58:01.731 AM kellerct[404]: audit warning: closefile /var/audit/20150117135558.20150117135801
    1/17/15 7:58:01.752 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:58:03.110 AM logind[66]: -[SessionManager getClient:withRole:inAuditSession:]:241: ERROR: No session dictionary for audit session 100017
    1/17/15 7:58:03.110 AM logind[66]: _SMGetSessionAgent:73: ERROR: __SMGetClientForAuditSessionAgent failed 2
    1/17/15 7:58:03.111 AM IMRemoteURLConnectionAgent[397]: SACShieldWindowShowing:925: ERROR: NULL response
    1/17/15 7:58:03.346 AM com.apple.xpc.launchd[1]: (com.apple.imtransferservices.IMTransferAgent) The _DirtyJetsamPriority key is not available on this platform.
    1/17/15 7:58:03.346 AM com.apple.xpc.launchd[1]: (com.apple.imtransferservices.IMTransferAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:58:03.347 AM com.apple.xpc.launchd[1]: (com.apple.imtranscoding.IMTranscoderAgent) The _DirtyJetsamPriority key is not available on this platform.
    1/17/15 7:58:03.347 AM com.apple.xpc.launchd[1]: (com.apple.imtranscoding.IMTranscoderAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:58:03.475 AM imagent[392]: [Warning] IMDAccount: incoming 'defaults' is not a dictionary, (null), (null)
    1/17/15 7:58:03.475 AM imagent[392]: [Warning] IMDAccount: incoming 'defaults' is not a dictionary, (null), (null)
    1/17/15 7:58:03.924 AM callservicesd[389]: Failed to get the bundle id
    1/17/15 7:58:33.479 AM com.apple.xpc.launchd[1]: (com.apple.auditd[408]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.auditd
    1/17/15 7:58:33.493 AM kellerct[412]: audit warning: soft /var/audit
    1/17/15 7:58:33.493 AM kellerct[413]: audit warning: allsoft
    1/17/15 7:58:33.494 AM kellerct[414]: audit warning: closefile /var/audit/20150117135801.20150117135833
    1/17/15 7:59:03.103 AM kellerct[419]: audit warning: soft /var/audit
    1/17/15 7:59:03.103 AM kellerct[420]: audit warning: closefile /var/audit/20150117135833.20150117135903
    1/17/15 7:59:03.105 AM kellerct[421]: audit warning: allsoft
    1/17/15 7:59:03.177 AM com.apple.xpc.launchd[1]: (com.apple.imdmessageservices.IMDMessageServicesAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:59:03.177 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:59:36.026 AM com.apple.xpc.launchd[1]: (com.apple.auditd[430]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.auditd
    1/17/15 7:59:36.036 AM kellerct[434]: audit warning: allsoft
    1/17/15 7:59:36.036 AM kellerct[433]: audit warning: soft /var/audit
    1/17/15 7:59:36.056 AM kellerct[436]: audit warning: closefile /var/audit/20150117135903.20150117135936
    1/17/15 7:59:36.657 AM WindowServer[119]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'. Run with arg = -login
    1/17/15 7:59:39.235 AM WindowServer[119]: CGXSetDisplayColorProfileAndTransfer: Display 0x04271ac0: Unit 0; ColorProfile { 532686347 }; TransferTable (256, 3)
    1/17/15 7:59:40.686 AM com.apple.AmbientDisplayAgent[162]: AmbientDisplayAgent started
    1/17/15 7:59:52.327 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 7:59:52.763 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 1.75 seconds (server forcibly re-enabled them after 1.32 seconds)
    1/17/15 7:59:54.344 AM sharingd[449]: 07:59:54.277 : Starting Up...
    1/17/15 7:59:54.350 AM sharingd[449]: 07:59:54.349 : Device Capabilities (Handoff:NO, Instant Hotspot:NO, AirDrop:NO, Legacy AirDrop:NO, Remote Disc:NO)
    1/17/15 7:59:58.399 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 7:59:58.799 AM sharingd[449]: [Warning] Services all disappeared, removing all dependent devices
    1/17/15 7:59:59.943 AM iconservicesagent[452]: iconservicesagent launched.
    1/17/15 8:00:00.665 AM Spotlight[442]: spot: agent checkin
    1/17/15 8:00:00.971 AM Spotlight[442]: connectionToService 0x6080001185d0
    1/17/15 8:00:01.215 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:00:01.754 AM iconservicesagent[452]: Starting service with cache path: /var/folders/kp/bghl35295gq0lksv9z_tj65w0000gn/C/com.apple.iconservices
    1/17/15 8:00:01.927 AM Finder[437]: assertion failed: 14B25: libxpc.dylib + 97940 [9437C02E-A07B-38C8-91CB-299FAA63083D]: 0x89
    1/17/15 8:00:02.172 AM SystemUIServer[429]: Cannot find executable for CFBundle 0x7f8e21515e20 </System/Library/CoreServices/Menu Extras/Clock.menu> (not loaded)
    1/17/15 8:00:02.490 AM sharingd[449]: 08:00:02.489 : No delegate parameters from account, account exists = NO
    1/17/15 8:00:02.490 AM sharingd[449]: 08:00:02.490 : Tethering: Identifier needs fixing
    1/17/15 8:00:02.493 AM sharingd[449]: 08:00:02.492 : No delegate parameters from account, account exists = NO
    1/17/15 8:00:02.497 AM sharingd[449]: 08:00:02.496 : No delegate parameters from account, account exists = NO
    1/17/15 8:00:02.802 AM SystemUIServer[429]: Cannot find executable for CFBundle 0x7f8e215168c0 </System/Library/CoreServices/Menu Extras/Volume.menu> (not loaded)
    1/17/15 8:00:04.460 AM com.apple.metadata.SpotlightNetHelper[453]: CGSConnectionByID: 0 is not a valid connection ID.
    1/17/15 8:00:04.460 AM com.apple.metadata.SpotlightNetHelper[453]: Invalid Connection ID 0
    1/17/15 8:00:07.583 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "SystemUIServer" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:00:07.000 AM kernel[0]: Sandbox: Finder(437) System Policy: deny file-write-unlink /Users/kellerct/Library/Saved Application State/com.apple.finder.savedState/restorecount.plist
    1/17/15 8:00:11.064 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "SystemUIServer" after 4.48 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 8:00:12.019 AM Spotlight[442]: applications query - started
    1/17/15 8:00:13.397 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:00:13.408 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 2.09 seconds (server forcibly re-enabled them after 2.07 seconds)
    1/17/15 8:00:13.434 AM com.apple.SecurityServer[54]: Session 100022 created
    1/17/15 8:00:15.198 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:00:17.444 AM com.apple.xpc.launchd[1]: (com.apple.quicklook[460]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.quicklook
    1/17/15 8:00:18.400 AM storeaccountd[458]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ff821d2d7e0> connection from pid 453 with interface <AccountServiceInterface: 0x7ff821d2f000> (PID 453)
    1/17/15 8:00:19.767 AM Finder[437]: CoreDockSetTrashFull returned error -4956
    1/17/15 8:00:33.161 AM com.apple.xpc.launchd[1]: (com.apple.PhotoApps.AVCHDConverter) Unknown key for dictionary: EnvironmentVarialbles
    1/17/15 8:00:33.162 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:00:33.511 AM WindowServer[119]: CGXGetConnectionProperty: Invalid connection 38503
    1/17/15 8:00:36.958 AM Spotlight[442]: applications query - finished in 25 seconds
    1/17/15 8:00:45.091 AM iconservicesd[37]: Failed to move temp file /Library/Caches/com.apple.iconservices.store/56B5168D-6EE1-1078-094C-DF302C9E25 2E.isdata.tmp to /Library/Caches/com.apple.iconservices.store/56B5168D-6EE1-1078-094C-DF302C9E25 2E.isdata with error: Error Domain=NSCocoaErrorDomain Code=516 "“56B5168D-6EE1-1078-094C-DF302C9E252E.isdata.tmp” couldn’t be moved to “com.apple.iconservices.store” because an item with the same name already exists." UserInfo=0x7faec0c1ce50 {NSSourceFilePathErrorKey=/Library/Caches/com.apple.iconservices.store/56B5168D -6EE1-1078-094C-DF302C9E252E.isdata.tmp, NSUserStringVariant=(
        Move
    ), NSDestinationFilePath=/Library/Caches/com.apple.iconservices.store/56B5168D-6EE 1-1078-094C-DF302C9E252E.isdata, NSFilePath=/Library/Caches/com.apple.iconservices.store/56B5168D-6EE1-1078-094C -DF302C9E252E.isdata.tmp, NSUnderlyingError=0x7faec0c20620 "The operation couldn’t be completed. File exists"}
    1/17/15 8:00:45.202 AM com.apple.xpc.launchd[1]: (com.apple.ReportCrash[489]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.ReportCrash
    1/17/15 8:00:46.662 AM ReportCrash[489]: Attempt to read info_array in pid 486 failed, address was 8fea0edc
    1/17/15 8:00:47.005 AM ReportCrash[489]: Attempt to read info_array in pid 486 failed, address was 8fea0edc
    1/17/15 8:00:47.203 AM ReportCrash[489]: Attempt to read info_array in pid 486 failed, address was 8fea0edc
    1/17/15 8:00:47.303 AM ReportCrash[489]: Attempt to read info_array in pid 486 failed, address was 8fea0edc
    1/17/15 8:00:47.418 AM ReportCrash[489]: Attempt to read info_array in pid 486 failed, address was 8fea0edc
    1/17/15 8:00:47.420 AM ReportCrash[489]: Attempt to read info_array in pid 486 failed, address was 8fea0edc
    1/17/15 8:00:48.868 AM com.apple.xpc.launchd[1]: (com.ibm.Notes.helper.57684[484]) Service exited with abnormal code: 133
    1/17/15 8:00:48.870 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:00:50.893 AM WiFiAgent[478]: [NO client logger] <Sep  9 2014 16:12:26> WIFICLOUDSYNC WiFiCloudSyncEngineCreate: created...
    1/17/15 8:00:50.894 AM WiFiAgent[478]: [NO client logger] <Sep  9 2014 16:12:26> WIFICLOUDSYNC WiFiCloudSyncEngineRegisterCallbacks: WiFiCloudSyncEngineCallbacks version - 0, bundle id - com.apple.wifi.WiFiAgent
    1/17/15 8:00:52.993 AM storeaccountd[458]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ff821d1b380> connection from pid 425 with interface <AccountServiceInterface: 0x7ff821d21870> (PID 425)
    1/17/15 8:00:56.590 AM Keychain Circle Notification[468]: Posted at launch: (
    1/17/15 8:00:59.357 AM ReportCrash[489]: Saved crash report for mpreload[486] version ??? to /Users/kellerct/Library/Logs/DiagnosticReports/mpreload_2015-01-17-080057_chris -kellers-imac-2.crash
    1/17/15 8:01:00.381 AM storeaccountd[458]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ff821d26660> connection from pid 471 with interface <AccountServiceInterface: 0x7ff821d26a90> (PID 471)
    1/17/15 8:01:02.464 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:01:08.936 AM CloudKeychainProxy[493]:  __45-[UbiqitousKVSProxy doEnsurePeerRegistration]_block_invoke <UB---e-C---> ensurePeerRegistration called, success ((null))
    1/17/15 8:01:09.116 AM Keychain Circle Notification[468]: rawStatus -1, #applicants 0, #peers 0, err=Error Domain=com.apple.security.sos.error Code=2 "The operation couldn’t be completed. (com.apple.security.sos.error error 2 - Remote error : The operation couldn‚Äôt be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call))" UserInfo=0x7fe810c50330 {NSDescription=Remote error : The operation couldn‚Äôt be completed. (com.apple.security.sos.error error 2 - Public Key not available - failed to register before call)}
    1/17/15 8:01:09.457 AM Keychain Circle Notification[468]: Checking validity of 0 notes
    1/17/15 8:01:09.459 AM Keychain Circle Notification[468]: writeToStorage plist={
        applcationDate = "0000-12-30 00:00:00 +0000";
        lastCircleStatus = "-1";
        lastWritten = "2015-01-17 14:01:09 +0000";
        pendingApplicationReminder = "4001-01-01 00:00:00 +0000";
        pendingApplicationReminderInterval = 172800;
    1/17/15 8:01:11.225 AM NotificationCenter[471]: Layout still needs update after calling -[NSView layout].  NSView or one of its superclasses may have overridden -layout without calling super. Or, something may have dirtied layout in the middle of updating it.  Both are programming errors in Cocoa Autolayout.  The former is pretty likely to arise if some pre-Cocoa Autolayout class had a method called layout, but it should be fixed.
    1/17/15 8:01:13.128 AM Fitbit Connect Menubar Helper[490]: <FBMessenger: 0x6080000a4440>: Another data is still sending. Placing send request into queue.
    1/17/15 8:01:22.339 AM Pages[485]: WARNING: The Gestalt selector gestaltSystemVersion is returning 10.9.1 instead of 10.10.1. Use NSProcessInfo's operatingSystemVersion property to get correct system version number.
    Call location:
    1/17/15 8:01:22.707 AM Pages[485]: 0   CarbonCore                          0x906087e7 ___Gestalt_SystemVersion_block_invoke + 135
    1/17/15 8:01:22.707 AM Pages[485]: 1   libdispatch.dylib                   0x9ac890b5 dispatch_once_f + 251
    1/17/15 8:01:22.707 AM Pages[485]: 2   libdispatch.dylib                   0x9ac8a0d8 dispatch_once + 31
    1/17/15 8:01:22.707 AM Pages[485]: 3   CarbonCore                          0x9059afb8 _Gestalt_SystemVersion + 1050
    1/17/15 8:01:22.707 AM Pages[485]: 4   CarbonCore                          0x9059ab69 Gestalt + 150
    1/17/15 8:01:22.707 AM Pages[485]: 5   SFUtility                           0x00c7af7d GetSystemVersion + 29
    1/17/15 8:01:22.707 AM Pages[485]: 6   Pages                               0x00002ede main + 62
    1/17/15 8:01:35.736 AM AppleIDAuthAgent[473]: AppleIdAuth URL: https://identity.apple.com/dsservices/dsxmlrpc
    1/17/15 8:01:37.085 AM storeassetd[501]: AssetServiceDelegate: Accepting new connection <NSXPCConnection: 0x7fb75141bd40> connection from pid 498 with interface <AssetServiceInterface: 0x7fb751410710> (PID 498)
    1/17/15 8:01:39.000 AM kernel[0]: BUG in process suhelperd[176]: over-released legacy external boost assertions (0 total, 0 external, 0 legacy-external)
    1/17/15 8:01:44.660 AM storeassetd[501]: addOperation <UpdateOperation: 0x7fb751521c00>{name = '(null)'}
    1/17/15 8:01:52.676 AM locationd[177]: Couldn't find a requirement string for masquerading client /System/Library/PrivateFrameworks/Parsec.framework
    1/17/15 8:01:53.484 AM pkd[450]: FCIsAppAllowedToLaunchExt [343] -- *** _FCMIGAppCanLaunch timed out. Returning false.
    1/17/15 8:01:54.977 AM locationd[177]: could not get apple languages array, assuming english
    1/17/15 8:01:58.753 AM storeaccountd[458]: ADI: {
        "Cache-Control" = "no-transform, max-age=5783";
        Connection = "keep-alive";
        "Content-Encoding" = gzip;
        "Content-Length" = 21198;
        "Content-Type" = "text/xml; charset=UTF-8";
        Date = "Sat, 17 Jan 2015 14:01:58 GMT";
        "Last-Modified" = "Sat, 17 Jan 2015 09:59:41 GMT";
        Server = "ATS/4.1.0";
        "Strict-Transport-Security" = "max-age=31536000";
        Vary = "Accept-Encoding, X-Apple-Store-Front, Cookie, User-Agent";
        "X-Apple-ATS-Cache-Key" = "/init.itunes.apple.com/80/WebObjects/MZInit.woa/wa/initiateSession/MacAppStore /2.0%20/143441-1/13/https/itspod=71?ix=5";
        "X-Apple-Partner" = "origin.0";
        "apple-timing-app" = "52 ms";
        "x-apple-aka-ttl" = "Generated Sat Jan 17 01:59:41 PST 2015, Expires Sat Jan 17 07:39:41 PST 2015, TTL 20400s";
        "x-apple-application-instance" = 36907;
        "x-apple-application-site" = ST11;
        "x-apple-jingle-correlation-key" = 7NX7P35WOS6TXF5G23YINVLGHI;
        "x-apple-max-age" = 14400;
        "x-apple-orig-url" = "https://init.itunes.apple.com/WebObjects/MZInit.woa/wa/initiateSession?ix=5&user AgentCacheKey=MacAppStore%2f2.0%20";
        "x-apple-request-store-front" = "143441-1,13";
        "x-apple-translated-wo-url" = "/WebObjects/MZInit.woa/wa/initiateSession?ix=5&userAgentCacheKey=MacAppStore%2 f2.0%20";
        "x-webobjects-loadaverage" = 0;
    1/17/15 8:02:08.230 AM locationd[177]: could not get apple languages array, assuming english
    1/17/15 8:02:20.274 AM storeaccountd[458]: ADI: {
        "Access-Control-Allow-Origin" = "*";
        "Cache-Control" = "private, max-age=60";
        Connection = "keep-alive";
        "Content-Length" = 2;
        "Content-Type" = "application/json; charset=UTF-8";
        Date = "Sat, 17 Jan 2015 14:02:20 GMT";
        Expires = "Sat, 17 Jan 2015 14:03:20 GMT";
        "Strict-Transport-Security" = "max-age=31536000";
        Vary = "X-Apple-Store-Front,X-Dsid,Cookie";
        "access-control-allow-credentials" = true;
        "apple-timing-app" = "0 ms";
        "x-apple-application-instance" = 10558;
        "x-apple-application-site" = NWK;
        "x-apple-jingle-correlation-key" = 3JUEEVPJFUPYEO3XLZVQSHT6KU;
        "x-webobjects-loadaverage" = 2;
    1/17/15 8:02:22.337 AM com.apple.backupd[223]: Network destination already mounted at: /Volumes/TimeMachine
    1/17/15 8:02:33.697 AM storeaccountd[458]: AccountServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ff821c5e730> connection from pid 501 with interface <AccountServiceInterface: 0x7ff821c4c530> (PID 501)
    1/17/15 8:02:38.681 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "Mail" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:02:40.187 AM com.apple.xpc.launchd[1]: (com.apple.StreamingUnzipService) The _DirtyJetsamPriority key is not available on this platform.
    1/17/15 8:02:40.187 AM com.apple.xpc.launchd[1]: (com.apple.StreamingUnzipService) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:02:41.433 AM storedownloadd[508]: DownloadServiceDelegate: Accepting new connection <NSXPCConnection: 0x7ffe40d080e0> connection from pid 501 with interface <DownloadServiceInterface: 0x7ffe40d09c10> (PID 501)
    1/17/15 8:02:42.951 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "Mail" after 5.27 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 8:02:44.324 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:02:47.184 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "iPhoto" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:02:49.649 AM com.apple.xpc.launchd[1]: (com.apple.quicklook[515]) Endpoint has been activated through legacy launch(3) APIs. Please switch to XPC or bootstrap_check_in(): com.apple.quicklook
    1/17/15 8:02:49.896 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "iPhoto" after 3.71 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 8:02:50.915 AM com.apple.backupd[223]: Disk image already attached: /Volumes/TimeMachine/Chris Keller’s iMac.sparsebundle, DIHLDiskImageAttach returned: 35
    1/17/15 8:02:52.477 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 9.15 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 8:02:55.119 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:02:55.626 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 1.51 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 8:02:56.051 AM WindowServer[119]: Display 0x4271ac0 captured by conn 0x830f
    1/17/15 8:02:57.685 AM com.apple.backupd[223]: Disk image /Volumes/TimeMachine/Chris Keller’s iMac.sparsebundle mounted at: /Volumes/Time Machine Backups
    1/17/15 8:03:05.600 AM findNames[514]: dispatch_semaphore_wait() time out: -[IMKUserDictionary reloadWithCompletionHandler:]
    1/17/15 8:03:09.145 AM apsd[51]: Peer [pid=372] requested push wake but lacks APSPushWakeEntitlement
    1/17/15 8:03:09.147 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>: notification observer: com.apple.iChat   notification: __CFNotification 0x7f8023435240 {name = _NSDoNotDisturbEnabledNotification}
    1/17/15 8:03:12.864 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>:    NC Disabled: NO
    1/17/15 8:03:13.765 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>:   DND Enabled: YES
    1/17/15 8:03:13.765 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>: Updating enabled: NO   (Topics: (null))
    1/17/15 8:03:15.085 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:03:26.274 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:03:32.237 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:03:33.955 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:03:35.114 AM com.apple.xpc.launchd[1]: (com.apple.quicklook.satellite.56EAB7C9-0C8F-4B87-9812-6B4934BB8288[522]) Service exited due to signal: Killed: 9
    1/17/15 8:03:47.274 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "Finder" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:03:48.221 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "Finder" after 1.95 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 8:03:48.558 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:03:58.043 AM com.apple.xpc.launchd[1]: (com.apple.imfoundation.IMRemoteURLConnectionAgent) The _DirtyJetsamMemoryLimit key is not available on this platform.
    1/17/15 8:04:02.423 AM QuickLookSatellite[528]: Failed to obtain sandbox extension for path=/Users/kellerct/Library/Caches/com.apple.quicklook.satellite. Errno:1
    1/17/15 8:04:03.355 AM QuickLookSatellite[528]: Failed to obtain sandbox extension for path=/Users/kellerct/Library/Caches/com.apple.quicklook.satellite. Errno:1
    1/17/15 8:04:14.086 AM com.apple.xpc.launchd[1]: (com.apple.quicklook.satellite.56EAB7C9-0C8F-4B87-9812-6B4934BB8288[528]) Service exited due to signal: Killed: 9
    1/17/15 8:04:19.644 AM WindowServer[119]: disable_update_timeout: UI updates were forcibly disabled by application "Dropbox" for over 1.00 seconds. Server has re-enabled them.
    1/17/15 8:04:21.323 AM WindowServer[119]: common_reenable_update: UI updates were finally reenabled by application "Dropbox" after 2.68 seconds (server forcibly re-enabled them after 1.00 seconds)
    1/17/15 8:04:39.152 AM apsd[51]: Peer [pid=372] requested push wake but lacks APSPushWakeEntitlement
    1/17/15 8:04:39.152 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>: notification observer: com.apple.iChat   notification: __CFNotification 0x7f8023594a30 {name = _NSDoNotDisturbDisabledNotification}
    1/17/15 8:04:40.740 AM WindowServer[119]: Display 0x4271ac0 released by conn 0x830f
    1/17/15 8:04:40.902 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>:    NC Disabled: NO
    1/17/15 8:04:40.909 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>:   DND Enabled: NO
    1/17/15 8:04:40.909 AM identityservicesd[387]: <IMMacNotificationCenterManager: 0x7f802358b260>: Updating enabled: YES   (Topics: (
    1/17/15 8:04:46.000 AM kernel[0]: fsevents: watcher dbfseventsd (pid: 542) - Using /dev/fsevents directly is unsupported.  Migrate to FSEventsFramework
    1/17/15 8:04:55.896 AM pkd[450]: UNINSTALLED:com.getdropbox.dropbox.garcon com.getdropbox.dropbox.garcon(1.7) 40AFE2D2-8557-4B8B-9844-3A767C1434E1 /Applications/Dropbox.app/Contents/PlugIns/garcon.appex
    1/17/15 8:04:55.925 AM pkd[450]: INSTALLED:com.getdropbox.dropbox.garcon com.getdropbox.dropbox.garcon(1.7) <__NSConcreteUUID 0x7fde10ca7cb0> 6301D176-51BE-49D5-98E7-67E1B12813C1 /Applications/Dropbox.app/Contents/PlugIns/garcon.appex
    1/17/15 8:04:59.601 AM CoreServicesUIAgent[457]: unexpected message <OS_xpc_error: <error: 0x7fff78ae9c60> { count = 1, contents =
      "XPCErrorDescription" => <string: 0x7fff78ae9f70> { length = 18, contents = "Connection invalid" }
    }>
    1/17/15 8:04:59.688 AM com.apple.xpc.launchd[1]: (com.apple.quicklook.satellite.D7A66065-B379-44F2-9D2E-2AC374FAEFAF[536]) Service exited due to signal: Killed: 9
    Thanks again for your help.

  • Running Very Slow

    I have had this issue for a 1 month now.  Been to an authorized apple repair shop, no satisfaction, still runs very slow.  It's a late 2009 imac with the latest software, no updates available. 
    Starting any application is painfully slow.  Never had this problem before, ran like a top until last month.  I have no ide why. 
    Any ideas?

    Back up all data immediately as your boot drive may be failing.
    This diagnostic procedure will query the system log for messages that may indicate a hardware fault. It changes nothing, and therefore will not, in itself, solve your problem.
    If you have more than one user account, these instructions must be carried out as an administrator. I've tested them only with the Safari web browser. If you use another browser, they may not work as described.
    Triple-click anywhere in the line below on this page to select it:
    syslog -k Sender kernel -k Message CReq 'Channel t|GPU D|I/O|n Cause: -' | tail | open -ef
    Copy the selected text to the Clipboard (command-C).
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V).
    The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear.
    A TextEdit window will open with the output of the command. Normally the command will produce no output, and the window will be empty. If the TextEdit window (not the Terminal window) has anything in it, post it — the text, please, not a screenshot. The title of the TextEdit window doesn't matter, and you don't need to post that.

  • Sql is running very slow

    hello everyone
    here is my procedure
    in procedure select statement is running very slow it takes 20min
    DECLARE
    y10_pad_sd_1 number;
    y10_sad_sd_1 number;
    y10_sad_oe_1 number;
    y10_she18_avg_1 number;
    y10_she_avg_1 number;
    y10_o_pad_sd_1 number;
    y10_e_pad_sd_1 number;
    y10_o_sad_sd_1 number;
    y10_e_sad_sd_1 number;
    y15_pad_sd_1 number;
    y15_sad_sd_1 number;
    y15_sad_oe_1 number;
    y15_she18_avg_1 number;
    y15_she_avg_1 number;
    y15_o_pad_sd_1 number;
    y15_e_pad_sd_1 number;
    y15_o_sad_sd_1 number;
    y15_e_sad_sd_1 number;
    y20_pad_sd_1 number;
    y20_sad_sd_1 number;
    y20_sad_oe_1 number;
    y20_she18_avg_1 number;
    y20_she_avg_1 number;
    y20_o_pad_sd_1 number;
    y20_e_pad_sd_1 number;
    y20_o_sad_sd_1 number;
    y20_e_sad_sd_1 number;
    CURSOR c_pn IS
    SELECT
    pn_id pn_id
    ,pn_dm pn_dm
    ,arch_id arch_id
    ,o_ink o_ink
    ,o_color o_color
    ,e_ink e_ink
    ,e_color e_color
    FROM pn_list_iqp_95cl;
    type c7 is table of c_pn%rowtype;
    c8 c7;
    BEGIN
    open c_pn;
    fetch c_pn bulk collect into c8;
    close c_pn;
    for i in 1..c8.last loop
    SELECT /*+ use_hash(pmo pme) */
    LEAST(MAX ( pmo.y10_pad_sd ), MAX ( pme.y10_pad_sd ))
    ,LEAST(MAX ( pmo.y10_sad_sd ), MAX ( pme.y10_sad_sd ))
    ,LEAST(MAX ( pmo.y10_sad_oe ), MAX ( pme.y10_sad_oe ))
    ,LEAST(MAX ( pmo.y10_she18_avg), MAX ( pme.y10_she18_avg ))
    ,LEAST(MAX ( pmo.y10_she_avg ), MAX ( pme.y10_she_avg ))
    ,LEAST(MAX ( pmo.y10_o_pad_sd ), MAX ( pme.y10_o_pad_sd ))
    ,LEAST(MAX ( pmo.y10_e_pad_sd ), MAX ( pme.y10_e_pad_sd ))
    ,LEAST(MAX ( pmo.y10_o_sad_sd ), MAX ( pme.y10_o_sad_sd ))
    ,LEAST(MAX ( pmo.y10_e_sad_sd ), MAX ( pme.y10_e_sad_sd ))
    ,LEAST(MAX ( pmo.y15_pad_sd ), MAX ( pme.y15_pad_sd ))
    ,LEAST(MAX ( pmo.y15_sad_sd ), MAX ( pme.y15_sad_sd ))
    ,LEAST(MAX ( pmo.y15_sad_oe ), MAX ( pme.y15_sad_oe ))
    ,LEAST(MAX ( pmo.y15_she18_avg), MAX ( pme.y15_she18_avg ))
    ,LEAST(MAX ( pmo.y15_she_avg ), MAX ( pme.y15_she_avg ))
    ,LEAST(MAX ( pmo.y15_o_pad_sd ), MAX ( pme.y15_o_pad_sd ))
    ,LEAST(MAX ( pmo.y15_e_pad_sd ), MAX ( pme.y15_e_pad_sd ))
    ,LEAST(MAX ( pmo.y15_o_sad_sd ), MAX ( pme.y15_o_sad_sd ))
    ,LEAST(MAX ( pmo.y15_e_sad_sd ), MAX ( pme.y15_e_sad_sd ))
    ,LEAST(MAX ( pmo.y20_pad_sd ), MAX ( pme.y20_pad_sd ))
    ,LEAST(MAX ( pmo.y20_sad_sd ), MAX ( pme.y20_sad_sd ))
    ,LEAST(MAX ( pmo.y20_sad_oe ), MAX ( pme.y20_sad_oe ))
    ,LEAST(MAX ( pmo.y20_she18_avg), MAX ( pme.y20_she18_avg ))
    ,LEAST(MAX ( pmo.y20_she_avg ), MAX ( pme.y20_she_avg ))
    ,LEAST(MAX ( pmo.y20_o_pad_sd ), MAX ( pme.y20_o_pad_sd ))
    ,LEAST(MAX ( pmo.y20_e_pad_sd ), MAX ( pme.y20_e_pad_sd ))
    ,LEAST(MAX ( pmo.y20_o_sad_sd ), MAX ( pme.y20_o_sad_sd ))
    ,LEAST(MAX ( pmo.y20_e_sad_sd ), MAX ( pme.y20_e_sad_sd ))
    INTO
    y10_pad_sd_1
    ,y10_sad_sd_1
    ,y10_sad_oe_1
    ,y10_she18_avg_1
    ,y10_she_avg_1
    ,y10_o_pad_sd_1
    ,y10_e_pad_sd_1
    ,y10_o_sad_sd_1
    ,y10_e_sad_sd_1
    ,y15_pad_sd_1
    ,y15_sad_sd_1
    ,y15_sad_oe_1
    ,y15_she18_avg_1
    ,y15_she_avg_1
    ,y15_o_pad_sd_1
    ,y15_e_pad_sd_1
    ,y15_o_sad_sd_1
    ,y15_e_sad_sd_1
    ,y20_pad_sd_1
    ,y20_sad_sd_1
    ,y20_sad_oe_1
    ,y20_she18_avg_1
    ,y20_she_avg_1
    ,y20_o_pad_sd_1
    ,y20_e_pad_sd_1
    ,y20_o_sad_sd_1
    ,y20_e_sad_sd_1
    FROM pm_list_iqp_95cl pmo ,pm_list_iqp_95cl pme
    WHERE pmo.pn_id = pme.pn_id
    AND pme.pn_id = c8(i).pn_id
    AND pmo.slot_cd = 'O'
    AND pme.slot_cd = 'E';
    END LOOP;
    END;

    EXPLAIN PLAN FOR THIS QUERY
    cached plan :cost all rows(cost:4)
    step name step cost rows
    select statement 6 4
    sort(aggregate) 5 1
    merge join(cartesian) 4 4 1
    tellatel.pm_list_iqp_95cl table access(full) 1 2 1
    buffer(sort) 3 2 1
    tellatel.pm_list_iqp_95cl_table access(full) 2 2 1

  • Archiving old mail - as mail is running very slow

    Can someone please give me some guidance as to how to archive my older emails in Mail? I have to keep a copy of everything but some of my inbox's have 20,000+ emails in them and this is making Mail run very slow. I would love to be able to select for example a date criteria and export or archive everything prior to that date. Any ideas? Also, am i right in assuming this will make Mail run faster for me? The slowness occurs usually when switching between mail boxes within the application. Thanks in advance, John

    Hi David,
    Thanks for your reply. I downloaded VacuumMail and ran it successfully, it seemed to have worked yesterday but again today opening my inbox is very slow loading again.
    I have now created a new white folder called Archive and moved 15,000 of my incoming messages into a sub folder within there and have done the same with 10,000 of my sent messages into a 'sent' sub folder of the white folder. This leaves me with around 8,000 in my inbox and 5,000 in my sent folder. Is this the reason that my mail is still opening these folders very slowly, because of the large volume of mail? I guess i must see the little clock icon to the right of the inbox for about 15-25 seconds each time before the mail is displayed in my inbox folder...
    Are there any other diagnostics i should run?
    Finally, thanks to everyone who has posted in this forum. I have been trying to hit the 'helpful' button for each of you but there seems to be a bug with this as i get the following message each time:
    Error
    +An error in the system has occurred. Please contact the system administrator if the problem persists.+
    +Useful links :+
    +* Forum Home -- browse the forums here.+
    +* Search Forums -- visit the search page to query all forum content.+
    I will keep trying though, and if in the meantime anyone has any other ideas as to how to help please let me know.
    Thanks in advance
    J.

  • Mac book pro is running very slow.  is there a way to do a disc cleanup?

    mac book pro is running very slow.  is there a way to do a disc cleanup?

    First, back up all data immediately, as your boot drive might be failing.
    Step 1
    This diagnostic procedure will query the system log for messages that may indicate a hardware fault. It changes nothing, and therefore will not, in itself, solve your problem.
    If you have more than one user account, these instructions must be carried out as an administrator. I've tested them only with the Safari web browser. If you use another browser, they may not work as described.
    Triple-click anywhere in the line below on this page to select it:
    syslog -k Sender kernel -k Message CReq 'Channel t|GPU D|I/O|n Cause: -' | tail | open -ef
    Copy the selected text to the Clipboard (command-C).
    Launch the Terminal application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
    Paste into the Terminal window (command-V).
    The command may take a noticeable amount of time to run. Wait for a new line ending in a dollar sign (“$”) to appear.
    A TextEdit window will open with the output of the command. Normally the command will produce no output, and the window will be empty. If the TextEdit window (not the Terminal window) has anything in it, stop here and post it — the text, please, not a screenshot. The title of the TextEdit window doesn't matter, and you don't need to post that.
    Step 2
    There are a few other possible causes of generalized slow performance that you can rule out easily.
    Reset the System Management Controller.
    If you have many image or video files on the Desktop with preview icons, move them to another folder.
    If applicable, uncheck all boxes in the iCloud preference pane.
    Disconnect all non-essential wired peripherals and remove aftermarket expansion cards, if any.
    Check your keychains in Keychain Access for excessively duplicated items.
    Boot into Recovery mode, launch Disk Utility, and run Repair Disk.
    If you're booting from an aftermarket SSD, see whether there's a firmware update for it.
    If you have a MacBook Pro with dual graphics, disable automatic graphics switching in the Energy Saverpreference pane for better performance at the cost of shorter battery life.
    Step 3
    When you notice the problem, launch the Activity Monitor application in any of the following ways:
    ☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
    ☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
    ☞ Open LaunchPad. Click Utilities, then Activity Monitor in the icon grid.
    Select the CPU tab of the Activity Monitor window.
    Select All Processes from the menu in the toolbar, if not already selected.
    Click the heading of the % CPU column in the process table to sort the entries by CPU usage. You may have to click it twice to get the highest value at the top. What is it, and what is the process? Also post the values for % User, % System, and % Idle at the bottom of the window.
    Select the System Memory tab. What values are shown in the bottom part of the window for Page outs and Swap used?
    Next, select the Disk Activity tab. Post the approximate values shown for Reads in/sec and Writes out/sec (not Reads in and Writes out.)
    Step 4
    If you have more than one user account, you must be logged in as an administrator to carry out this step.
    Launch the Console application in the same way you launched Activity Monitor. Make sure the title of the Console window is All Messages. If it isn't, select All Messages from the SYSTEM LOG QUERIES menu on the left. If you don't see that menu, select
    View ▹ Show Log List
    from the menu bar.
    Select the 50 or so most recent entries in the log. Copy them to the Clipboard (command-C). Paste into a reply to this message (command-V). You're looking for entries at the end of the log, not at the beginning.
    When posting a log extract, be selective. Don't post more than is requested.
    Please do not indiscriminately dump thousands of lines from the log into this discussion.
    Important: Some personal information, such as your name, may appear in the log. Anonymize before posting. That should be easy to do if your extract is not too long.

  • Order Import program run very slow

    Hi
    I use Order Import program to create sale order from tables interface.But it run very slow,about two hours for one record.
    How can i do it run fast?
    Thanks

    Hi,
    before checking metalink for patches (there are some performance related patches for order entry)
    you should check if statistics OE related tables
    - OE_HEADERS_IFACE_ALL,
    - OE_ORDER_HEADERS_ALL
    - OE_LINES_IFACE_ALL
    - OE_ORDER_LINES_ALL
    are up to date (check column last_analyzed in dba_tables). If not, run gather schema statistics
    program to collect current table statistics for OE schema.
    If this does not help, have a look at metalink and query for "order import" "performance"...
    Regards

  • SQL server is Running Very Slow

    hi,
    I used this following query for finding out how many connection are connected, it is showing that 70 connections,my ram is 16GB,  but still my sql server is running very slow. how can i increase my sql server speed. or how can i analyses that.I checked 
    even when no job was running, but still same speed. I'm using store procedures, SQL jobs no inline queries.
    SELECT
    DB_NAME(dbid) as DBName,
    COUNT(dbid) as NumberOfConnections,
    loginame as LoginName
    FROM
    sys.sysprocesses
    WHERE
    dbid > 0
    GROUP BY
    dbid, loginame

    hi,
    I used this following query for finding out how many connection are connected, it is showing that 30 connections,my ram is 16GB,  but still my sql server is running very slow. how can i increase my sql server speed. or how can i analyses that.I checked 
    even when no job was running, but still same speed.
    SELECT
    DB_NAME(dbid) as DBName,
    COUNT(dbid) as NumberOfConnections,
    loginame as LoginName
    FROM
    sys.sysprocesses
    WHERE
    dbid > 0
    GROUP BY
    dbid, loginame

Maybe you are looking for

  • Hp AIO app trouble finding printer.

    I recently downloaded HP AIO app for Apple device wireless printing my printer HP photo Smart C1580 is connected by ethernet to the router for some unknown reason this app does not seem to be finding my printer. Is there a answer to this? This questi

  • How can I get credit for a movie rental that never downloaded?

    I tried to rent a movie from iTunes through my Apple TV.  The movie has partially downloaded, but repeatedly stops, and I have to resume the download.  Many times it goes into an "Authorizing" state, but never starts the movie.  Now my 24 hour period

  • How can I create a jar file at a Unix systems?

    Hi there, how what's the command to create a jar file in Unix? I'm creating a zip file and then renaming it to jar, but it's size is smaller than the one when I use the WinZip tool at a Windows system. Thanks, Andre

  • Suddenly " display does not support HDCP " - March 2014

    Hello Sky peoples Having had no trouble with my Sky+ HD and my LG TV for months and months I am now getting this "does not support HDCP" dialog every time I switch on. The TV was on then suddenly it blacked out and wouldnt restart - so I had to de-po

  • Archive and Purge in Oracle Financials (verions 11.0.3, database 8.0.5)

    Hi all, I am going to purge balances and journals data by using function 'Archive and Purge' in Oracle Financials. I want to calculate the space that can free up finally. i.e. calculate the difference before and after data purging. How to get this in