Help with slow union all

Hi
The problem Im having is that I had a query on sales order tables that used to take a couple of minutes to run. The user wanted contract orders to be added to the query and these were stored in different tables to the sales orders. I carried out union all joins in views and then applied the query to the views. Unfortunately it now takes 30 minutes to run.
I apologise for the large post, I am just trying to provide enough information for someone to help me out.
Any help will be greatly appreciated.
Thanks
Stephen
The original query was:
SELECT
C_STD_COST.MAT, C_STD_COST.LAB, C_STD_COST.OHD, ITEM.PC, BILL_HDR.RATE,
BILL_SO.SO_SHIP_QTY, BILL_SO.SO_SHIP_EXT_AMT, AR_DOC.CUSTOMER,
BILL_SO.AR_DOC,
CUS_LOC.NAME, AR_DOC.CREATED_DATE, MEMO.TOT_ORD_QTY, MEMO.UNIT_PRICE,
MEMO.BOOK_RATE, AR_DOC.AR_DOC_TYPE, MEMO.MEMO_TYPE, BILL_SO.ITEM
FROM
AR_DOC, BILL_HDR, CUS_LOC, BILL_SO, ITEM, MEMO, C_STD_COST
WHERE
AR_DOC.AR_CCN=BILL_HDR.AR_CCN AND
AR_DOC.AR_DOC_TYPE=BILL_HDR.AR_DOC_TYPE AND
AR_DOC.AR_DOC=BILL_HDR.AR_DOC AND
AR_DOC.CUSTOMER=CUS_LOC.CUSTOMER AND
AR_DOC.CUS_AR_LOC=CUS_LOC.CUS_LOC AND
BILL_HDR.AR_CCN=BILL_SO.AR_CCN AND
BILL_HDR.AR_DOC_TYPE=BILL_SO.AR_DOC_TYPE AND
BILL_HDR.AR_DOC=BILL_SO.AR_DOC AND
BILL_SO.ITEM=ITEM.ITEM (+) AND
BILL_SO.REVISION=ITEM.REVISION (+) AND
BILL_SO.AR_DOC=MEMO.AR_DOC (+) AND
BILL_SO.AR_DOC_LINE=MEMO.MEMO_LINE (+) AND
BILL_SO.AR_CCN=MEMO.SALES_CCN (+) AND
BILL_SO.AR_DOC_TYPE=MEMO.MEMO_TYPE (+) AND
ITEM.ITEM=C_STD_COST.ITEM (+) AND
ITEM.REVISION=C_STD_COST.REVISION (+) AND
AR_DOC.CREATED_DATE>=TO_DATE ('30-05-2006 00:00:00', 'DD-MM-YYYY
HH24:MI:SS') AND
AR_DOC.CREATED_DATE<TO_DATE ('14-06-2006 00:00:00', 'DD-MM-YYYY
HH24:MI:SS')
ORDER BY
AR_DOC.CUSTOMER, ITEM.PCThe explain plan showed:
SELECT STATEMENT
SORT                ORDER BY
MERGE JOIN          OUTER
SORT                JOIN
NESTED LOOPS        OUTER
NESTED LOOPS
NESTED LOOPS
NESTED LOOPS
NESTED LOOPS        OUTER
TABLE ACCESS        FULL              BILL_SO       4
TABLE ACCESS        BY INDEX ROWID    ITEM          5
INDEX               UNIQUE SCAN       PK_ITEM           UNIQUE
TABLE ACCESS        BY INDEX ROWID    BILL_HDR      2
INDEX               UNIQUE SCAN       PK_BILL_HDR       UNIQUE
TABLE ACCESS        BY INDEX ROWID    AR_DOC        1
INDEX               UNIQUE SCAN       PK_AR_DOC         UNIQUE
TABLE ACCESS        BY INDEX ROWID    CUS_LOC       3
INDEX               UNIQUE SCAN       PK_CUS_LOC        UNIQUE
TABLE ACCESS        BY INDEX ROWID    MEMO          6
INDEX               RANGE SCAN        PK_MEMO           UNIQUE
SORT                JOIN
TABLE ACCESS        FULL              COST_ITM      8The views I created were:
CREATE VIEW C_BILL_DET AS
SELECT
AR_CCN, AR_DOC_TYPE, AR_DOC, AR_DOC_LINE, ITEM,
REVISION, SO_SHIP_QTY, SO_SHIP_EXT_AMT, COST1
FROM
BILL_SO
UNION ALL
SELECT
AR_CCN, AR_DOC_TYPE, AR_DOC, AR_DOC_LINE, ITEM,
REVISION, SHIP_QTY, SHIP_EXT_AMT, COST1
FROM
  CR_BLSH;
CREATE VIEW C_BILL_HDR AS
SELECT
AR_CCN, AR_DOC_TYPE, AR_DOC, RATE
FROM
BILL_HDR
UNION ALL
SELECT
AR_CCN, AR_DOC_TYPE, AR_DOC, RATE
FROM
CR_BLHD;The new query is:
SELECT
C_STD_COST.MAT, C_STD_COST.LAB, C_STD_COST.OHD, ITEM.PC, C_BILL_HDR.RATE,
C_BILL_DET.SO_SHIP_QTY, C_BILL_DET.SO_SHIP_EXT_AMT, AR_DOC.CUSTOMER,
C_BILL_DET.AR_DOC,
CUS_LOC.NAME, AR_DOC.CREATED_DATE, MEMO.TOT_ORD_QTY, MEMO.UNIT_PRICE,
MEMO.BOOK_RATE, AR_DOC.AR_DOC_TYPE, MEMO.MEMO_TYPE, C_BILL_DET.ITEM
FROM
AR_DOC, C_BILL_HDR, CUS_LOC, C_BILL_DET, ITEM, MEMO, C_STD_COST
WHERE
AR_DOC.AR_CCN=C_BILL_HDR.AR_CCN AND
AR_DOC.AR_DOC_TYPE=C_BILL_HDR.AR_DOC_TYPE AND
AR_DOC.AR_DOC=C_BILL_HDR.AR_DOC AND
AR_DOC.CUSTOMER=CUS_LOC.CUSTOMER AND
AR_DOC.CUS_AR_LOC=CUS_LOC.CUS_LOC AND
C_BILL_HDR.AR_CCN=C_BILL_DET.AR_CCN AND
C_BILL_HDR.AR_DOC_TYPE=C_BILL_DET.AR_DOC_TYPE AND
C_BILL_HDR.AR_DOC=C_BILL_DET.AR_DOC AND
C_BILL_DET.ITEM=ITEM.ITEM (+) AND
C_BILL_DET.REVISION=ITEM.REVISION (+) AND
C_BILL_DET.AR_DOC=MEMO.AR_DOC (+) AND
C_BILL_DET.AR_DOC_LINE=MEMO.MEMO_LINE (+) AND
C_BILL_DET.AR_CCN=MEMO.SALES_CCN (+) AND
C_BILL_DET.AR_DOC_TYPE=MEMO.MEMO_TYPE (+) AND
ITEM.ITEM=C_STD_COST.ITEM (+) AND
ITEM.REVISION=C_STD_COST.REVISION (+) AND
AR_DOC.CREATED_DATE>=TO_DATE ('30-05-2006 00:00:00', 'DD-MM-YYYY
HH24:MI:SS') AND
AR_DOC.CREATED_DATE<TO_DATE ('14-06-2006 00:00:00', 'DD-MM-YYYY
HH24:MI:SS')
ORDER BY
AR_DOC.CUSTOMER, ITEM.PCThe explain plan is:
SELECT STATEMENT
SORT                ORDER BY
MERGE JOIN          OUTER
SORT                JOIN
NESTED LOOPS
NESTED LOOPS
MERGE JOIN
SORT                JOIN
NESTED LOOPS        OUTER
NESTED LOOPS        OUTER
VIEW                                  C_BILL_DET   4
UNION-ALL
TABLE ACCESS        FULL              BILL_SO      9
TABLE ACCESS        FULL              CR_BLSH      10
TABLE ACCESS        BY INDEX ROWID    ITEM         5
INDEX               UNIQUE SCAN       PK_ITEM           UNIQUE
TABLE ACCESS        BY INDEX ROWID    MEMO         6
INDEX               RANGE SCAN        PK_MEMO           UNIQUE
SORT                JOIN
VIEW                                  C_BILL_HDR   2
UNION-ALL
TABLE ACCESS        FULL              BILL_HDR     11
TABLE ACCESS        FULL              CR_BLHD      12
TABLE ACCESS        BY INDEX ROWID    AR_DOC       1
INDEX               UNIQUE SCAN       PK_AR_DOC         UNIQUE
TABLE ACCESS        BY INDEX ROWID    CUS_LOC      3
INDEX               UNIQUE SCAN       PK_CUS_LOC        UNIQUE
SORT                JOIN
TABLE ACCESS        FULL              COST_ITM     8

I don't understand.
I try your with statement and get: "end_date" invalid identifier as an error
I start my query out:
WITH start_date as
(select to_date ('08/15/2007 12:00:00 AM','MM/DD/YYYY HH:MI:SS AM') from dual),
end_date as (select to_date ('08/18/2007 12:00:00 AM','MM/DD/YYYY HH:MI:SS AM) from dual)
select sales.id, start_date as callstart, end_date as callend
where sales.created_timestamp >= start_date
and sales.created_timestamp < end_date
UNION ALL
<<<<<<<here is where you take the last select statement and replace sales with manufacturing>>>>>>>>>>>>>
UNION ALL
<<<<<<<here is where you take the last select statement and replace sales with engineering>>>>>>>>>>>>>
and it still fails.

Similar Messages

  • Help with a union all statement

    Hello
    I am pulling a query much like this:
    (select ID, Created_timestamp from snapshot1
    where created_timestamp >= to_date ('8/15/2007 12:00:00 AM','MM/DD/YYYY HH:MI:SS AM')
    and created_timestamp < to_date('8/18/2007 12:00:00 AM','MM/DD/YYYY HH:MI:SS AM'))
    UNION ALL
    (select ID, created_timestamp from snapshot2
    where created_timestamp >= to_date ('8/15/2007 12:00:00 AM','MM/DD/YYYY HH:MI:SS AM')
    and created_timestamp < to_date('8/18/2007 12:00:00 AM','MM/DD/YYYY HH:MI:SS AM'))
    UNION ALL
    (select ID, created_timestamp from data_history
    where created_timestamp >= to_date ('8/15/2007 12:00:00 AM','MM/DD/YYYY HH:MI:SS AM')
    and created_timestamp < to_date('8/18/2007 12:00:00 AM','MM/DD/YYYY HH:MI:SS AM'))
    Is there an easier way to handle created_timestamp?
    I would like to put it at the beginning so I only have to change it in one place.

    I don't understand.
    I try your with statement and get: "end_date" invalid identifier as an error
    I start my query out:
    WITH start_date as
    (select to_date ('08/15/2007 12:00:00 AM','MM/DD/YYYY HH:MI:SS AM') from dual),
    end_date as (select to_date ('08/18/2007 12:00:00 AM','MM/DD/YYYY HH:MI:SS AM) from dual)
    select sales.id, start_date as callstart, end_date as callend
    where sales.created_timestamp >= start_date
    and sales.created_timestamp < end_date
    UNION ALL
    <<<<<<<here is where you take the last select statement and replace sales with manufacturing>>>>>>>>>>>>>
    UNION ALL
    <<<<<<<here is where you take the last select statement and replace sales with engineering>>>>>>>>>>>>>
    and it still fails.

  • Help required on UNION ALL for select query

    Hello all,
    The execution plan for an SQL is impacted when another SELECT is concatenated with a UNION ALL. The two SELECTS are very efficient when run separately (< 100 buffer gets), but when run together (using a UNION ALL), the execution plan changes (for the first SELECT) and the buffer gets jumps to over 45000!
    what customer says with the UNION ALL, Oracle instead of doing a Merge Scan (that allows the inner table to filter out the rows from the outer table), chooses to do a NL join. This results in a Unique Index scan for each one of the 15000 rows in the outer table, resulting in 46000 consistent gets.
    Can you please suggest customer why plan changes when they use UNION ALL &  also suggest better way of running query.
    Please refer to below explain plan .
    WITH THE UNIONS
    ===============
      1  SELECT  count(*)
      2     FROM SOC_LIST SOC
      3     WHERE
      4       ( EXISTS(  SELECT  1
      5               FROM    ELIGIBILITY_RELATION
      6               WHERE   SRC_CODE = 'SHDMM4215'
      7                    AND   DEST_CODE = SOC.SOC
      8                 AND   SRC_TYPE = 'P'
      9                 AND   DEST_TYPE = 'S'))
    10  UNION ALL
    11   SELECT count(*)
    12     FROM SOC_LIST SOC
    13*    WHERE        ( = 'Y')
    12:25:39 SQL> /
      COUNT(*)                                                                                                                                           
           153                                                                                                                                           
             0                                                                                                                                           
    Execution Plan
       0      SELECT STATEMENT Optimizer=CHOOSE (Cost=31 Card=2 Bytes=10)                                                                                
       1    0   UNION-ALL                                                                                                                                
       2    1     SORT (AGGREGATE)                                                                                                                       
       3    2       FILTER                                                                                                                               
       4    3         TABLE ACCESS (FULL) OF 'SOC_LIST' (Cost=15 Card=749                                                                                
              Bytes=7490)                                                                                                                                
       5    3         PARTITION HASH (SINGLE)                                                                                                            
       6    5           INDEX (UNIQUE SCAN) OF 'ELIGIBILITY_RELATION_PK' (                                                                               
              UNIQUE) (Cost=2 Card=1 Bytes=24)                                                                                                           
       7    1     SORT (AGGREGATE)                                                                                                                       
       8    7       FILTER                                                                                                                               
       9    8         TABLE ACCESS (FULL) OF 'SOC_LIST' (Cost=15 Card=1497                                                                               
              8)                                                                                                                                         
    Statistics
              0  recursive calls                                                                                                                         
              0  db block gets                                                                                                                           
          46712  consistent gets         <------large number                                                                                                                 
              0  physical reads                                                                                                                          
              0  redo size                                                                                                                               
            215  bytes sent via SQL*Net to client                                                                                                        
            241  bytes received via SQL*Net from client                                                                                                  
              2  SQL*Net roundtrips to/from client                                                                                                       
              0  sorts (memory)                                                                                                                          
              0  sorts (disk)                                                                                                                            
              2  rows processed                                                                                                                          
    12:25:40 SQL> ed
    Wrote file C:/PADDY/AFIEDT.BUF
    PART 1 of the UNION ALL
    ========================
      1  SELECT  count(*)
      2     FROM SOC_LIST SOC
      3     WHERE
      4       ( EXISTS(  SELECT  1
      5               FROM    ELIGIBILITY_RELATION
      6               WHERE   SRC_CODE = 'SHDMM4215'
      7                    AND   DEST_CODE = SOC.SOC
      8                 AND   SRC_TYPE = 'P'
      9*                AND   DEST_TYPE = 'S'))
    12:25:54 SQL> /
      COUNT(*)                                                                                                                                           
           153                                                                                                                                           
    Execution Plan
       0      SELECT STATEMENT Optimizer=CHOOSE (Cost=4 Card=1 Bytes=34)                                                                                 
       1    0   SORT (AGGREGATE)                                                                                                                         
       2    1     MERGE JOIN (SEMI) (Cost=4 Card=149 Bytes=5066)                                                                                         
       3    2       INDEX (FULL SCAN) OF 'SOC_LIST_1IX' (NON-UNIQUE) (Cost                                                                               
              =41 Card=14978 Bytes=149780)                                                                                                               
       4    2       SORT (UNIQUE) (Cost=3 Card=149 Bytes=3576)                                                                                           
       5    4         PARTITION HASH (ALL)                                                                                                               
       6    5           INDEX (RANGE SCAN) OF 'ELIGIBILITY_RELATION_PK' (U                                                                               
              NIQUE) (Cost=10 Card=149 Bytes=3576)                                                                                                       
    Statistics
              0  recursive calls                                                                                                                         
              0  db block gets                                                                                                                           
             56  consistent gets                                                                                                                         
              0  physical reads                                                                                                                          
              0  redo size                                                                                                                               
            218  bytes sent via SQL*Net to client                                                                                                        
            241  bytes received via SQL*Net from client                                                                                                  
              2  SQL*Net roundtrips to/from client                                                                                                       
              1  sorts (memory)                                                                                                                          
              0  sorts (disk)                                                                                                                            
              1  rows processed                                                                                                                          
    12:25:55 SQL> ed
    Wrote file C:/PADDY/AFIEDT.BUF
    PART 2 of the UNION ALL
    ========================
      1   SELECT count(*)
      2     FROM SOC_LIST SOC
      3*    WHERE        ( = 'Y')
    12:26:15 SQL> /
      COUNT(*)                                                                                                                                           
             0                                                                                                                                           
    Execution Plan
       0      SELECT STATEMENT Optimizer=CHOOSE (Cost=15 Card=1)                                                                                         
       1    0   SORT (AGGREGATE)                                                                                                                         
       2    1     FILTER                                                                                                                                 
       3    2       TABLE ACCESS (FULL) OF 'SOC_LIST' (Cost=15 Card=14978)                                                                               
    Statistics
              0  recursive calls                                                                                                                         
              0  db block gets                                                                                                                           
              0  consistent gets                                                                                                                         
              0  physical reads                                                                                                                          
              0  redo size                                                                                                                               
            215  bytes sent via SQL*Net to client                                                                                                        
            241  bytes received via SQL*Net from client                                                                                                  
              2  SQL*Net roundtrips to/from client                                                                                                       
              0  sorts (memory)                                                                                                                          
              0  sorts (disk)                                                                                                                            
              1  rows processed                                                                                                                          
    12:26:20 SQL> spool off
    Same results but with theUNION ALL, the buffergets is massive ...
    Thanks
    Krishna

    i am also attaching 10043/10053 trace file .
    /opt/oracle/adm/STCUST/udump/stcust_ora_7919_10046_10053_trace_file.trc
    *** TRACE DUMP CONTINUED FROM FILE  ***
    Oracle9i Enterprise Edition Release 9.2.0.8.0 - 64bit Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.8.0 - Production
    ORACLE_HOME = /opt/oracle/product/9.2.0.8
    System name: HP-UX
    Node name: rcihp009
    Release: B.11.23
    Version: U
    Machine: 9000/800
    Instance name: STCUST
    Redo thread mounted by this instance: 1
    Oracle process number: 152
    Unix process pid: 7919, image: oracle@rcihp009 (TNS V1-V3)
    *** 2013-06-10 13:32:48.943
    *** SESSION ID:(533.15875) 2013-06-10 13:32:48.943
    APPNAME mod='SQL*Plus' mh=3669949024 act='' ah=4029777240
    =====================
    PARSING IN CURSOR #1 len=69 dep=0 uid=33 oct=42 lid=33 tim=3017585934213 hv=2004533713 ad='4aa33998'
    alter session set events '10046 trace name context forever, level 12'
    END OF STMT
    EXEC #1:c=0,e=209,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=4,tim=3017585933683
    WAIT #1: nam='SQL*Net message to client' ela= 3 p1=1413697536 p2=1 p3=0
    *** 2013-06-10 13:33:00.090
    WAIT #1: nam='SQL*Net message from client' ela= 10884599 p1=1413697536 p2=1 p3=0
    =====================
    PARSING IN CURSOR #1 len=69 dep=0 uid=33 oct=42 lid=33 tim=3017596819944 hv=2030017677 ad='3af92970'
    alter session set events '10053 trace name context forever, level 1'
    END OF STMT
    PARSE #1:c=0,e=484,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=4,tim=3017596819933
    BINDS #1:
    EXEC #1:c=0,e=160,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=4,tim=3017596820180
    WAIT #1: nam='SQL*Net message to client' ela= 3 p1=1413697536 p2=1 p3=0
    *** 2013-06-10 13:33:50.197
    WAIT #1: nam='SQL*Net message from client' ela= 48932344 p1=1413697536 p2=1 p3=0
    PARAMETERS USED BY THE OPTIMIZER
    OPTIMIZER_FEATURES_ENABLE = 9.2.0
    OPTIMIZER_MODE/GOAL = Choose
    _OPTIMIZER_PERCENT_PARALLEL = 101
    HASH_AREA_SIZE = 131072
    HASH_JOIN_ENABLED = TRUE
    HASH_MULTIBLOCK_IO_COUNT = 0
    SORT_AREA_SIZE = 65536
    OPTIMIZER_SEARCH_LIMIT = 5
    PARTITION_VIEW_ENABLED = FALSE
    _ALWAYS_STAR_TRANSFORMATION = FALSE
    _B_TREE_BITMAP_PLANS = TRUE
    STAR_TRANSFORMATION_ENABLED = FALSE
    _COMPLEX_VIEW_MERGING = TRUE
    _PUSH_JOIN_PREDICATE = TRUE
    PARALLEL_BROADCAST_ENABLED = TRUE
    OPTIMIZER_MAX_PERMUTATIONS = 2000
    OPTIMIZER_INDEX_CACHING = 0
    _SYSTEM_INDEX_CACHING = 0
    OPTIMIZER_INDEX_COST_ADJ = 1
    OPTIMIZER_DYNAMIC_SAMPLING = 1
    _OPTIMIZER_DYN_SMP_BLKS = 32
    QUERY_REWRITE_ENABLED = TRUE
    QUERY_REWRITE_INTEGRITY = ENFORCED
    _INDEX_JOIN_ENABLED = TRUE
    _SORT_ELIMINATION_COST_RATIO = 0
    _OR_EXPAND_NVL_PREDICATE = TRUE
    _NEW_INITIAL_JOIN_ORDERS = TRUE
    ALWAYS_ANTI_JOIN = CHOOSE
    ALWAYS_SEMI_JOIN = CHOOSE
    _OPTIMIZER_MODE_FORCE = TRUE
    _OPTIMIZER_UNDO_CHANGES = FALSE
    _UNNEST_SUBQUERY = TRUE
    _PUSH_JOIN_UNION_VIEW = TRUE
    _FAST_FULL_SCAN_ENABLED = TRUE
    _OPTIM_ENHANCE_NNULL_DETECTION = TRUE
    _ORDERED_NESTED_LOOP = TRUE
    _NESTED_LOOP_FUDGE = 100
    _NO_OR_EXPANSION = FALSE
    _QUERY_COST_REWRITE = TRUE
    QUERY_REWRITE_EXPRESSION = TRUE
    _IMPROVED_ROW_LENGTH_ENABLED = TRUE
    _USE_NOSEGMENT_INDEXES = FALSE
    _ENABLE_TYPE_DEP_SELECTIVITY = TRUE
    _IMPROVED_OUTERJOIN_CARD = TRUE
    _OPTIMIZER_ADJUST_FOR_NULLS = TRUE
    _OPTIMIZER_CHOOSE_PERMUTATION = 0
    _USE_COLUMN_STATS_FOR_FUNCTION = TRUE
    _SUBQUERY_PRUNING_ENABLED = TRUE
    _SUBQUERY_PRUNING_REDUCTION_FACTOR = 50
    _SUBQUERY_PRUNING_COST_FACTOR = 20
    _LIKE_WITH_BIND_AS_EQUALITY = FALSE
    _TABLE_SCAN_COST_PLUS_ONE = TRUE
    _SORTMERGE_INEQUALITY_JOIN_OFF = FALSE
    _DEFAULT_NON_EQUALITY_SEL_CHECK = TRUE
    _ONESIDE_COLSTAT_FOR_EQUIJOINS = TRUE
    _OPTIMIZER_COST_MODEL = CHOOSE
    _GSETS_ALWAYS_USE_TEMPTABLES = FALSE
    DB_FILE_MULTIBLOCK_READ_COUNT = 128
    _NEW_SORT_COST_ESTIMATE = TRUE
    _GS_ANTI_SEMI_JOIN_ALLOWED = TRUE
    _CPU_TO_IO = 0
    _PRED_MOVE_AROUND = TRUE
    BASE STATISTICAL INFORMATION
    Table stats    Table: SOC_LIST   Alias: SOC
      TOTAL ::  CDN: 17584  NBLKS:  653  AVG_ROW_LEN:  260
    Column:        SOC  Col#: 3      Table: SOC_LIST   Alias: SOC
        NDV: 17584     NULLS: 0         DENS: 5.6870e-05
        NO HISTOGRAM: #BKT: 1 #VAL: 2
    -- Index stats
      INDEX NAME: I_SNAP$_SOC_LIST  COL#: 1
        TOTAL ::  LVLS: 1   #LB: 64  #DK: 17487  LB/K: 1  DB/K: 1  CLUF: 699
      INDEX NAME: SOC_LIST_1IX  COL#: 3
        TOTAL ::  LVLS: 1   #LB: 47  #DK: 17487  LB/K: 1  DB/K: 1  CLUF: 14065
    Table stats    Table: ELIGIBILITY_RELATION   Alias: ELIGIBILITY_RELATION
      (Using composite stats)
      TOTAL ::  CDN: 11982220  NBLKS:  125493  AVG_ROW_LEN:  71
    -- Index stats
      INDEX NAME: ELIGIBILITY_RELATION_1IX  COL#: 3 4 5
        USING COMPOSITE STATS
        TOTAL ::  LVLS: 2   #LB: 38360  #DK: 4164  LB/K: 9  DB/K: 740  CLUF: 3081860
      INDEX NAME: ELIGIBILITY_RELATION_PK  COL#: 2 3 4 5
        USING COMPOSITE STATS
        TOTAL ::  LVLS: 2   #LB: 50740  #DK: 11873160  LB/K: 1  DB/K: 1  CLUF: 9158280
      INDEX NAME: I_SNAP$_ELIGIBILITY_RELATI  COL#: 1
        TOTAL ::  LVLS: 2   #LB: 49600  #DK: 11953600  LB/K: 1  DB/K: 1  CLUF: 8833300
    _OPTIMIZER_PERCENT_PARALLEL = 0
    SINGLE TABLE ACCESS PATH
    Column:   SRC_CODE  Col#: 2      Table: ELIGIBILITY_RELATION   Alias: ELIGIBILITY_RELATION
        NDV: 22087     NULLS: 0         DENS: 4.5276e-05
        NO HISTOGRAM: #BKT: 1 #VAL: 2
    Column:   SRC_TYPE  Col#: 3      Table: ELIGIBILITY_RELATION   Alias: ELIGIBILITY_RELATION
        NDV: 2         NULLS: 0         DENS: 5.0000e-01
        NO HISTOGRAM: #BKT: 1 #VAL: 2
    Column:  DEST_TYPE  Col#: 5      Table: ELIGIBILITY_RELATION   Alias: ELIGIBILITY_RELATION
        NDV: 2         NULLS: 0         DENS: 5.0000e-01
        NO HISTOGRAM: #BKT: 1 #VAL: 2
      TABLE: ELIGIBILITY_RELATION     ORIG CDN: 11982220  ROUNDED CDN: 136  CMPTD CDN: 136
      Access path: tsc  Resc:  3072  Resp:  3072
      Access path: index (iff)
          Index: ELIGIBILITY_RELATION_PK
      TABLE: ELIGIBILITY_RELATION
          RSC_CPU: 0   RSC_IO: 1243
      IX_SEL:  0.0000e+00  TB_SEL:  1.0000e+00
      Access path: iff  Resc:  1243  Resp:  1243
      Skip scan: ss-sel 0  andv 11970 
        ss cost 119700
        index io scan cost 19180
      Access path: index (scan)
          Index: ELIGIBILITY_RELATION_1IX
      TABLE: ELIGIBILITY_RELATION
          RSC_CPU: 0   RSC_IO: 789653
      IX_SEL:  5.0000e-01  TB_SEL:  2.5000e-01
      Skip scan: ss-sel 0  andv 11970 
        ss cost 11970
        index io scan cost 2
      Access path: index (index-only)
          Index: ELIGIBILITY_RELATION_PK
      TABLE: ELIGIBILITY_RELATION
          RSC_CPU: 0   RSC_IO: 10
      IX_SEL:  2.2638e-05  TB_SEL:  2.2638e-05
      ****** trying bitmap/domain indexes ******
      ****** finished trying bitmap/domain indexes ******
      BEST_CST: 1.00  PATH: 4  Degree:  1
    SINGLE TABLE ACCESS PATH
      TABLE: SOC_LIST     ORIG CDN: 17584  ROUNDED CDN: 17584  CMPTD CDN: 17584
      Access path: tsc  Resc:  18  Resp:  18
      Access path: index (iff)
          Index: SOC_LIST_1IX
      TABLE: SOC_LIST
          RSC_CPU: 0   RSC_IO: 3
      IX_SEL:  0.0000e+00  TB_SEL:  1.0000e+00
      Access path: iff  Resc:  3  Resp:  3
      Access path: index (no sta/stp keys)
          Index: SOC_LIST_1IX
      TABLE: SOC_LIST
          RSC_CPU: 0   RSC_IO: 48
      IX_SEL:  1.0000e+00  TB_SEL:  1.0000e+00
      BEST_CST: 1.00  PATH: 4  Degree:  1
    OPTIMIZER STATISTICS AND COMPUTATIONS
    GENERAL PLANS
    Join order[1]:  SOC_LIST[SOC]#0  ELIGIBILITY_RELATION[ELIGIBILITY_RELATION]#1
    Now joining: ELIGIBILITY_RELATION[ELIGIBILITY_RELATION]#1 *******
    NL Join
      Outer table: cost: 1  cdn: 17584  rcz: 10  resp:  1
      Inner table: ELIGIBILITY_RELATION
        Access path: tsc  Resc: 768
        Join:  Resc:  13504513  Resp:  13504513
      Access path: index (iff)
          Index: ELIGIBILITY_RELATION_PK
      TABLE: ELIGIBILITY_RELATION
          RSC_CPU: 0   RSC_IO: 1243
      IX_SEL:  0.0000e+00  TB_SEL:  1.0000e+00
      Inner table: ELIGIBILITY_RELATION
        Access path: iff  Resc: 311
        Join:  Resc:  5464229  Resp:  5464229
      Access path: index (unique)
          Index: ELIGIBILITY_RELATION_PK
      TABLE: ELIGIBILITY_RELATION
          RSC_CPU: 0   RSC_IO: 1
      IX_SEL:  8.3457e-08  TB_SEL:  8.3457e-08
        Join:  resc: 177  resp: 177
      Access path: index (join index)
          Index: ELIGIBILITY_RELATION_1IX
      TABLE: ELIGIBILITY_RELATION
          RSC_CPU: 0   RSC_IO: 750
      IX_SEL:  0.0000e+00  TB_SEL:  2.0886e-05
        Join:  resc: 131881  resp: 131881
      Access path: index (eq-unique)
          Index: ELIGIBILITY_RELATION_PK
      TABLE: ELIGIBILITY_RELATION
          RSC_CPU: 0   RSC_IO: 1
      IX_SEL:  0.0000e+00  TB_SEL:  0.0000e+00
        Join:  resc: 177  resp: 177
      ****** trying bitmap/domain indexes ******
      Access path: index (join index)
          Index: ELIGIBILITY_RELATION_1IX
      TABLE: ELIGIBILITY_RELATION
          RSC_CPU: 0   RSC_IO: 10
      IX_SEL:  1.4217e-05  TB_SEL:  2.0886e-05
        Join:  resc: 1759  resp: 1759
      Access path: index (index-only)
          Index: ELIGIBILITY_RELATION_PK
      TABLE: ELIGIBILITY_RELATION
          RSC_CPU: 0   RSC_IO: 4
      IX_SEL:  4.5276e-05  TB_SEL:  4.5276e-05
        Join:  resc: 704  resp: 704
        SORT resource      Sort statistics
          Sort width:           11 Area size:      628736 Max Area size:    31457280   Degree: 1
          Blocks to Sort:        2 Row size:           21 Rows:        543
          Initial runs:          1 Merge passes:        1 IO Cost / pass:          3
          Total IO sort cost: 2
          Total CPU sort cost: 0
          Total Temp space used: 0
      ****** finished trying bitmap/domain indexes ******
      Best NL cost: 177  resp: 177
    Semi-join cardinality:  135 = outer (17584) * sel (7.6774e-03) [flag=12]
    SM Join
      Outer table:
        resc: 1  cdn: 17584  rcz: 10  deg: 1  resp: 1
      Inner table: ELIGIBILITY_RELATION
        resc: 1  cdn: 136  rcz: 24  deg:  1  resp: 1
        using join:1 distribution:2 #groups:1
        SORT resource      Sort statistics
          Sort width:           11 Area size:      628736 Max Area size:    31457280   Degree: 1
          Blocks to Sort:        1 Row size:           37 Rows:        136
          Initial runs:          1 Merge passes:        1 IO Cost / pass:          2
          Total IO sort cost: 2
          Total CPU sort cost: 0
          Total Temp space used: 0
      Merge join  Cost:  4  Resp:  4
    HA Join
      Outer table:
        resc: 1  cdn: 17584  rcz: 10  deg: 1  resp: 1
      Inner table: ELIGIBILITY_RELATION
        resc: 1  cdn: 136  rcz: 24  deg:  1  resp: 1
        using join:8 distribution:2 #groups:1
      Hash join one ptn Resc: 4   Deg: 1
          hash_area:  154 (max=7680)  buildfrag:  48                probefrag:   1 ppasses:    1
      Hash join   Resc: 6   Resp: 6
    Join result: cost: 4  cdn: 135  rcz: 34
    Best so far: TABLE#: 0  CST:          1  CDN:      17584  BYTES:     175840
    Best so far: TABLE#: 1  CST:          4  CDN:        135  BYTES:       4590
    Join order[2]:  ELIGIBILITY_RELATION[ELIGIBILITY_RELATION]#1  SOC_LIST[SOC]#0
        SORT resource      Sort statistics
          Sort width:           11 Area size:      628736 Max Area size:    31457280   Degree: 1
          Blocks to Sort:        1 Row size:           37 Rows:        136
          Initial runs:          1 Merge passes:        1 IO Cost / pass:          2
          Total IO sort cost: 2
          Total CPU sort cost: 0
          Total Temp space used: 0
    Now joining: SOC_LIST[SOC]#0 *******
    NL Join
      Outer table: cost: 3  cdn: 136  rcz: 24  resp:  2
      Inner table: SOC_LIST
        Access path: tsc  Resc: 18
        Join:  Resc:  2450  Resp:  2450
      Access path: index (iff)
          Index: SOC_LIST_1IX
      TABLE: SOC_LIST
          RSC_CPU: 0   RSC_IO: 3
      IX_SEL:  0.0000e+00  TB_SEL:  1.0000e+00
      Inner table: SOC_LIST
        Access path: iff  Resc: 3
        Join:  Resc:  410  Resp:  410
      Access path: index (join index)
          Index: SOC_LIST_1IX
      TABLE: SOC_LIST
          RSC_CPU: 0   RSC_IO: 1
      IX_SEL:  0.0000e+00  TB_SEL:  5.6870e-05
        Join:  resc: 4  resp: 4
      Best NL cost: 4  resp: 4
    Join cardinality:  136 = outer (136) * inner (17584) * sel (5.6870e-05)  [flag=0]
    SM Join
      Outer table:
        resc: 2  cdn: 136  rcz: 24  deg: 1  resp: 2
      Inner table: SOC_LIST
        resc: 1  cdn: 17584  rcz: 10  deg:  1  resp: 1
        using join:1 distribution:2 #groups:1
        SORT resource      Sort statistics
          Sort width:           11 Area size:      628736 Max Area size:    31457280   Degree: 1
          Blocks to Sort:        1 Row size:           37 Rows:        136
          Initial runs:          1 Merge passes:        1 IO Cost / pass:          2
          Total IO sort cost: 2
          Total CPU sort cost: 0
          Total Temp space used: 0
        SORT resource      Sort statistics
          Sort width:           11 Area size:      628736 Max Area size:    31457280   Degree: 1
          Blocks to Sort:       46 Row size:           21 Rows:      17584
          Initial runs:          1 Merge passes:        1 IO Cost / pass:         51
          Total IO sort cost: 48
          Total CPU sort cost: 0
          Total Temp space used: 0
      Merge join  Cost:  54  Resp:  54
    HA Join
      Outer table:
        resc: 2  cdn: 136  rcz: 24  deg: 1  resp: 2
      Inner table: SOC_LIST
        resc: 1  cdn: 17584  rcz: 10  deg:  1  resp: 1
        using join:8 distribution:2 #groups:1
      Hash join one ptn Resc: 1   Deg: 1
          hash_area:  154 (max=7680)  buildfrag:  1                probefrag:   48 ppasses:    1
      Hash join   Resc: 4   Resp: 4
    Final - All Rows Plan:
      JOIN ORDER: 1
      CST: 4  CDN: 135  RSC: 4  RSP: 4  BYTES: 4590
      IO-RSC: 4  IO-RSP: 4  CPU-RSC: 0  CPU-RSP: 0
    QUERY
    SELECT   count(*)
       FROM SOC_LIST SOC
       WHERE
         ( EXISTS(  SELECT  1
                 FROM    ELIGIBILITY_RELATION
                 WHERE   SRC_CODE = 'SHDMM4215'
                      AND   DEST_CODE = SOC.SOC
                   AND   SRC_TYPE = 'P'
                   AND   DEST_TYPE = 'S'))
    =====================
    PARSING IN CURSOR #1 len=278 dep=0 uid=33 oct=3 lid=33 tim=3017645761269 hv=183981413 ad='492d5bb0'
    SELECT   count(*)
       FROM SOC_LIST SOC
       WHERE
         ( EXISTS(  SELECT  1
                 FROM    ELIGIBILITY_RELATION
                 WHERE   SRC_CODE = 'SHDMM4215'
                      AND   DEST_CODE = SOC.SOC
                   AND   SRC_TYPE = 'P'
                   AND   DEST_TYPE = 'S'))
    END OF STMT
    PARSE #1:c=10000,e=8343,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=4,tim=3017645761258
    BINDS #1:
    EXEC #1:c=0,e=529,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=4,tim=3017645761970
    WAIT #1: nam='SQL*Net message to client' ela= 3 p1=1413697536 p2=1 p3=0
    WAIT #1: nam='db file sequential read' ela= 9290 p1=2535 p2=142378 p3=1
    WAIT #1: nam='db file sequential read' ela= 2098 p1=2535 p2=142379 p3=1
    WAIT #1: nam='db file sequential read' ela= 11574 p1=2535 p2=33834 p3=1
    WAIT #1: nam='db file sequential read' ela= 10290 p1=2536 p2=60958 p3=1
    WAIT #1: nam='db file sequential read' ela= 11469 p1=2535 p2=61232 p3=1
    WAIT #1: nam='db file sequential read' ela= 378 p1=2535 p2=61233 p3=1
    WAIT #1: nam='db file sequential read' ela= 5493 p1=2535 p2=39498 p3=1
    WAIT #1: nam='db file sequential read' ela= 7397 p1=2536 p2=68185 p3=1
    WAIT #1: nam='db file sequential read' ela= 10037 p1=2536 p2=68520 p3=1
    WAIT #1: nam='db file sequential read' ela= 16125 p1=2535 p2=68809 p3=1
    WAIT #1: nam='db file sequential read' ela= 12426 p1=2535 p2=45162 p3=1
    WAIT #1: nam='db file sequential read' ela= 12447 p1=2535 p2=178335 p3=1
    WAIT #1: nam='db file sequential read' ela= 5974 p1=2535 p2=178798 p3=1
    WAIT #1: nam='db file sequential read' ela= 1247 p1=2535 p2=178799 p3=1
    WAIT #1: nam='db file sequential read' ela= 11010 p1=2535 p2=50826 p3=1
    WAIT #1: nam='db file sequential read' ela= 5421 p1=2536 p2=260451 p3=1
    WAIT #1: nam='db file sequential read' ela= 8230 p1=2536 p2=261538 p3=1
    WAIT #1: nam='db file sequential read' ela= 350 p1=2535 p2=142380 p3=1
    WAIT #1: nam='db file sequential read' ela= 346 p1=2535 p2=142381 p3=1
    WAIT #1: nam='db file sequential read' ela= 343 p1=2535 p2=142382 p3=1
    WAIT #1: nam='db file sequential read' ela= 480 p1=2535 p2=142383 p3=1
    WAIT #1: nam='db file sequential read' ela= 10237 p1=2535 p2=142384 p3=1
    WAIT #1: nam='db file sequential read' ela= 324 p1=2535 p2=142385 p3=1
    WAIT #1: nam='db file sequential read' ela= 359 p1=2535 p2=142386 p3=1
    WAIT #1: nam='db file sequential read' ela= 361 p1=2535 p2=142387 p3=1
    WAIT #1: nam='db file sequential read' ela= 375 p1=2535 p2=142388 p3=1
    WAIT #1: nam='db file sequential read' ela= 425 p1=2535 p2=142389 p3=1
    WAIT #1: nam='db file sequential read' ela= 540 p1=2535 p2=142390 p3=1
    WAIT #1: nam='db file sequential read' ela= 368 p1=2535 p2=142391 p3=1
    WAIT #1: nam='db file sequential read' ela= 479 p1=2535 p2=142392 p3=1
    WAIT #1: nam='db file sequential read' ela= 450 p1=2535 p2=142393 p3=1
    WAIT #1: nam='db file sequential read' ela= 307 p1=2535 p2=142394 p3=1
    WAIT #1: nam='db file sequential read' ela= 324 p1=2535 p2=142395 p3=1
    WAIT #1: nam='db file sequential read' ela= 396 p1=2535 p2=142396 p3=1
    WAIT #1: nam='db file sequential read' ela= 376 p1=2535 p2=142397 p3=1
    WAIT #1: nam='db file sequential read' ela= 295 p1=2535 p2=142398 p3=1
    WAIT #1: nam='db file sequential read' ela= 391 p1=2535 p2=142399 p3=1
    WAIT #1: nam='db file sequential read' ela= 396 p1=2535 p2=142400 p3=1
    WAIT #1: nam='db file sequential read' ela= 344 p1=2535 p2=142401 p3=1
    WAIT #1: nam='db file sequential read' ela= 337 p1=2535 p2=142402 p3=1
    WAIT #1: nam='db file sequential read' ela= 360 p1=2535 p2=142403 p3=1
    WAIT #1: nam='db file sequential read' ela= 402 p1=2535 p2=142404 p3=1
    WAIT #1: nam='db file sequential read' ela= 343 p1=2535 p2=142405 p3=1
    WAIT #1: nam='db file sequential read' ela= 408 p1=2535 p2=142406 p3=1
    WAIT #1: nam='db file sequential read' ela= 388 p1=2535 p2=142407 p3=1
    WAIT #1: nam='db file sequential read' ela= 400 p1=2535 p2=142408 p3=1
    WAIT #1: nam='db file sequential read' ela= 7999 p1=2536 p2=617 p3=1
    WAIT #1: nam='db file sequential read' ela= 520 p1=2536 p2=618 p3=1
    WAIT #1: nam='db file sequential read' ela= 294 p1=2536 p2=619 p3=1
    WAIT #1: nam='db file sequential read' ela= 311 p1=2536 p2=620 p3=1
    WAIT #1: nam='db file sequential read' ela= 316 p1=2536 p2=621 p3=1
    WAIT #1: nam='db file sequential read' ela= 306 p1=2536 p2=622 p3=1
    WAIT #1: nam='db file sequential read' ela= 303 p1=2536 p2=623 p3=1
    WAIT #1: nam='db file sequential read' ela= 1776 p1=2536 p2=624 p3=1
    FETCH #1:c=50000,e=216800,p=54,cr=54,cu=0,mis=0,r=1,dep=0,og=4,tim=3017645978865
    WAIT #1: nam='SQL*Net message from client' ela= 2802 p1=1413697536 p2=1 p3=0
    FETCH #1:c=0,e=1,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=0,tim=3017645981803
    WAIT #1: nam='SQL*Net message to client' ela= 1 p1=1413697536 p2=1 p3=0
    *** 2013-06-10 13:34:28.160
    WAIT #1: nam='SQL*Net message from client' ela= 36844121 p1=1413697536 p2=1 p3=0
    STAT #1 id=1 cnt=1 pid=0 pos=1 obj=0 op='SORT AGGREGATE (cr=54 r=54 w=0 time=216788 us)'
    STAT #1 id=2 cnt=157 pid=1 pos=1 obj=0 op='MERGE JOIN SEMI (cr=54 r=54 w=0 time=216734 us)'
    STAT #1 id=3 cnt=14296 pid=2 pos=1 obj=5769123 op='INDEX FULL SCAN SOC_LIST_1IX (cr=39 r=39 w=0 time=55399 us)'
    STAT #1 id=4 cnt=157 pid=2 pos=2 obj=0 op='SORT UNIQUE (cr=15 r=15 w=0 time=141933 us)'
    STAT #1 id=5 cnt=286 pid=4 pos=1 obj=0 op='PARTITION HASH ALL PARTITION: 1 4 (cr=15 r=15 w=0 time=130847 us)'
    STAT #1 id=6 cnt=286 pid=5 pos=1 obj=5401812 op='INDEX RANGE SCAN ELIGIBILITY_RELATION_PK PARTITION: 1 4 (cr=15 r=15 w=0 time=130716 us)'
    QUERY
    BEGIN := 'N'; END;
    =====================
    PARSING IN CURSOR #1 len=23 dep=0 uid=33 oct=47 lid=33 tim=3017682828223 hv=16287806 ad='464edb18'
    BEGIN := 'N'; END;
    END OF STMT
    PARSE #1:c=0,e=1569,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=0,tim=3017682828214
    BINDS #1:
    bind 0: dty=96 mxl=01(01) mal=00 scl=00 pre=00 oacflg=03 oacfl2=200071100000000 size=8 offset=0
       bfp=800003ffefe9f748 bln=01 avl=00 flg=05
    WAIT #1: nam='SQL*Net message to client' ela= 3 p1=1413697536 p2=1 p3=0
    EXEC #1:c=0,e=5494,p=0,cr=0,cu=0,mis=0,r=1,dep=0,og=4,tim=3017682833795
    *** 2013-06-10 13:34:44.174
    WAIT #1: nam='SQL*Net message from client' ela= 15630899 p1=1413697536 p2=1 p3=0
    QUERY
    SELECT count(*)
       FROM SOC_LIST SOC
       WHERE        ( = 'Y')
    =====================
    PARSING IN CURSOR #1 len=65 dep=0 uid=33 oct=3 lid=33 tim=3017698466665 hv=900106749 ad='43145458'
    SELECT count(*)
       FROM SOC_LIST SOC
       WHERE        ( = 'Y')
    END OF STMT
    PARSE #1:c=0,e=1409,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=0,tim=3017698466654
    PARAMETERS USED BY THE OPTIMIZER
    OPTIMIZER_FEATURES_ENABLE = 9.2.0
    OPTIMIZER_MODE/GOAL = Choose
    _OPTIMIZER_PERCENT_PARALLEL = 101
    HASH_AREA_SIZE = 131072
    HASH_JOIN_ENABLED = TRUE
    HASH_MULTIBLOCK_IO_COUNT = 0
    SORT_AREA_SIZE = 65536
    OPTIMIZER_SEARCH_LIMIT = 5
    PARTITION_VIEW_ENABLED = FALSE
    _ALWAYS_STAR_TRANSFORMATION = FALSE
    _B_TREE_BITMAP_PLANS = TRUE
    STAR_TRANSFORMATION_ENABLED = FALSE
    _COMPLEX_VIEW_MERGING = TRUE
    _PUSH_JOIN_PREDICATE = TRUE
    PARALLEL_BROADCAST_ENABLED = TRUE
    OPTIMIZER_MAX_PERMUTATIONS = 2000
    OPTIMIZER_INDEX_CACHING = 0
    _SYSTEM_INDEX_CACHING = 0
    OPTIMIZER_INDEX_COST_ADJ = 1
    OPTIMIZER_DYNAMIC_SAMPLING = 1
    _OPTIMIZER_DYN_SMP_BLKS = 32
    QUERY_REWRITE_ENABLED = TRUE
    QUERY_REWRITE_INTEGRITY = ENFORCED
    _INDEX_JOIN_ENABLED = TRUE
    _SORT_ELIMINATION_COST_RATIO = 0
    _OR_EXPAND_NVL_PREDICATE = TRUE
    _NEW_INITIAL_JOIN_ORDERS = TRUE
    ALWAYS_ANTI_JOIN = CHOOSE
    ALWAYS_SEMI_JOIN = CHOOSE
    _OPTIMIZER_MODE_FORCE = TRUE
    _OPTIMIZER_UNDO_CHANGES = FALSE
    _UNNEST_SUBQUERY = TRUE
    _PUSH_JOIN_UNION_VIEW = TRUE
    _FAST_FULL_SCAN_ENABLED = TRUE
    _OPTIM_ENHANCE_NNULL_DETECTION = TRUE
    _ORDERED_NESTED_LOOP = TRUE
    _NESTED_LOOP_FUDGE = 100
    _NO_OR_EXPANSION = FALSE
    _QUERY_COST_REWRITE = TRUE
    QUERY_REWRITE_EXPRESSION = TRUE
    _IMPROVED_ROW_LENGTH_ENABLED = TRUE
    _USE_NOSEGMENT_INDEXES = FALSE
    _ENABLE_TYPE_DEP_SELECTIVITY = TRUE
    _IMPROVED_OUTERJOIN_CARD = TRUE
    _OPTIMIZER_ADJUST_FOR_NULLS = TRUE
    _OPTIMIZER_CHOOSE_PERMUTATION = 0
    _USE_COLUMN_STATS_FOR_FUNCTION = TRUE
    _SUBQUERY_PRUNING_ENABLED = TRUE
    _SUBQUERY_PRUNING_REDUCTION_FACTOR = 50
    _SUBQUERY_PRUNING_COST_FACTOR = 20
    _LIKE_WITH_BIND_AS_EQUALITY = FALSE
    _TABLE_SCAN_COST_PLUS_ONE = TRUE
    _SORTMERGE_INEQUALITY_JOIN_OFF = FALSE
    _DEFAULT_NON_EQUALITY_SEL_CHECK = TRUE
    _ONESIDE_COLSTAT_FOR_EQUIJOINS = TRUE
    _OPTIMIZER_COST_MODEL = CHOOSE
    _GSETS_ALWAYS_USE_TEMPTABLES = FALSE
    DB_FILE_MULTIBLOCK_READ_COUNT = 128
    _NEW_SORT_COST_ESTIMATE = TRUE
    _GS_ANTI_SEMI_JOIN_ALLOWED = TRUE
    _CPU_TO_IO = 0
    _PRED_MOVE_AROUND = TRUE
    BASE STATISTICAL INFORMATION
    Table stats    Table: SOC_LIST   Alias: SOC
      TOTAL ::  CDN: 17584  NBLKS:  653  AVG_ROW_LEN:  260
    -- Index stats
      INDEX NAME: I_SNAP$_SOC_LIST  COL#: 1
        TOTAL ::  LVLS: 1   #LB: 64  #DK: 17487  LB/K: 1  DB/K: 1  CLUF: 699
      INDEX NAME: SOC_LIST_1IX  COL#: 3
        TOTAL ::  LVLS: 1   #LB: 47  #DK: 17487  LB/K: 1  DB/K: 1  CLUF: 14065
    _OPTIMIZER_PERCENT_PARALLEL = 0
    SINGLE TABLE ACCESS PATH
      TABLE: SOC_LIST     ORIG CDN: 17584  ROUNDED CDN: 17584  CMPTD CDN: 17584
      Access path: tsc  Resc:  18  Resp:  18
      ****** trying bitmap/domain indexes ******
      ****** finished trying bitmap/domain indexes ******
      BEST_CST: 18.00  PATH: 2  Degree:  1
    OPTIMIZER STATISTICS AND COMPUTATIONS
    GENERAL PLANS
    Join order[1]:  SOC_LIST[SOC]#0
    Best so far: TABLE#: 0  CST:         18  CDN:      17584  BYTES:          0
    Final - All Rows Plan:
      JOIN ORDER: 1
      CST: 18  CDN: 17584  RSC: 18  RSP: 18  BYTES: 0
      IO-RSC: 18  IO-RSP: 18  CPU-RSC: 0  CPU-RSP: 0
    BINDS #1:
    bind 0: dty=96 mxl=32(01) mal=00 scl=00 pre=00 oacflg=03 oacfl2=0 size=32 offset=0
       bfp=800003ffefea9490 bln=32 avl=01 flg=05
       value="N"
    EXEC #1:c=0,e=152,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=4,tim=3017698469481
    WAIT #1: nam='SQL*Net message to client' ela= 4 p1=1413697536 p2=1 p3=0
    FETCH #1:c=10000,e=1506,p=0,cr=0,cu=0,mis=0,r=1,dep=0,og=4,tim=3017698471536
    WAIT #1: nam='SQL*Net message from client' ela= 2607 p1=1413697536 p2=1 p3=0
    FETCH #1:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=0,tim=3017698474268
    WAIT #1: nam='SQL*Net message to client' ela= 1 p1=1413697536 p2=1 p3=0
    *** 2013-06-10 13:35:07.656
    WAIT #1: nam='SQL*Net message from client' ela= 22922584 p1=1413697536 p2=1 p3=0
    STAT #1 id=1 cnt=1 pid=0 pos=1 obj=0 op='SORT AGGREGATE (cr=0 r=0 w=0 time=93 us)'
    STAT #1 id=2 cnt=0 pid=1 pos=1 obj=0 op='FILTER  (cr=0 r=0 w=0 time=29 us)'
    STAT #1 id=3 cnt=0 pid=2 pos=1 obj=5769120 op='TABLE ACCESS FULL SOC_LIST '
    =====================
    PARSE ERROR #1:len=369 dep=0 uid=33 oct=0 lid=33 tim=3017721397730 err=900
    exec := 'N'
    SELEC ...
    WAIT #1: nam='SQL*Net break/reset to client' ela= 2 p1=1413697536 p2=1 p3=0
    WAIT #1: nam='SQL*Net break/reset to client' ela= 2403 p1=1413697536 p2=0 p3=0
    WAIT #1: nam='SQL*Net message to client' ela= 3 p1=1413697536 p2=1 p3=0
    *** 2013-06-10 13:35:24.017
    WAIT #1: nam='SQL*Net message from client' ela= 15973854 p1=1413697536 p2=1 p3=0
    QUERY
    SELECT  count(*)
       FROM SOC_LIST SOC
       WHERE
         ( EXISTS(  SELECT  1
                 FROM    ELIGIBILITY_RELATION
                 WHERE   SRC_CODE = 'SHDMM4215'
                      AND   DEST_CODE = SOC.SOC
                   AND   SRC_TYPE = 'P'
                   AND   DEST_TYPE = 'S'))
    UNION ALL
    SELECT count(*)
       FROM SOC_LIST SOC
       WHERE        ( = 'Y')
    =====================
    PARSING IN CURSOR #1 len=353 dep=0 uid=33 oct=3 lid=33 tim=3017737377655 hv=4202798596 ad='45639568'
    SELECT  count(*)
       FROM SOC_LIST SOC
       WHERE
         ( EXISTS(  SELECT  1
                 FROM    ELIGIBILITY_RELATION
                 WHERE   SRC_CODE = 'SHDMM4215'
                      AND   DEST_CODE = SOC.SOC
                   AND   SRC_TYPE = 'P'
                   AND   DEST_TYPE = 'S'))
    UNION ALL
    SELECT count(*)
       FROM SOC_LIST SOC
       WHERE        ( = 'Y')
    END OF STMT
    PARSE #1:c=0,e=2624,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=0,tim=3017737377644
    PARAMETERS USED BY THE OPTIMIZER
    OPTIMIZER_FEATURES_ENABLE = 9.2.0
    OPTIMIZER_MODE/GOAL = Choose
    _OPTIMIZER_PERCENT_PARALLEL = 101
    HASH_AREA_SIZE = 131072
    HASH_JOIN_ENABLED = TRUE
    HASH_MULTIBLOCK_IO_COUNT = 0
    SORT_AREA_SIZE = 65536
    OPTIMIZER_SEARCH_LIMIT = 5
    PARTITION_VIEW_ENABLED = FALSE
    _ALWAYS_STAR_TRANSFORMATION = FALSE
    _B_TREE_BITMAP_PLANS = TRUE
    STAR_TRANSFORMATION_ENABLED = FALSE
    _COMPLEX_VIEW_MERGING = TRUE
    _PUSH_JOIN_PREDICATE = TRUE
    PARALLEL_BROADCAST_ENABLED = TRUE
    OPTIMIZER_MAX_PERMUTATIONS = 2000
    OPTIMIZER_INDEX_CACHING = 0
    _SYSTEM_INDEX_CACHING = 0
    OPTIMIZER_INDEX_COST_ADJ = 1
    OPTIMIZER_DYNAMIC_SAMPLING = 1
    _OPTIMIZER_DYN_SMP_BLKS = 32
    QUERY_REWRITE_ENABLED = TRUE
    QUERY_REWRITE_INTEGRITY = ENFORCED
    _INDEX_JOIN_ENABLED = TRUE
    _SORT_ELIMINATION_COST_RATIO = 0
    _OR_EXPAND_NVL_PREDICATE = TRUE
    _NEW_INITIAL_JOIN_ORDERS = TRUE
    ALWAYS_ANTI_JOIN = CHOOSE
    ALWAYS_SEMI_JOIN = CHOOSE
    _OPTIMIZER_MODE_FORCE = TRUE
    _OPTIMIZER_UNDO_CHANGES = FALSE
    _UNNEST_SUBQUERY = TRUE
    _PUSH_JOIN_UNION_VIEW = TRUE
    _FAST_FULL_SCAN_ENABLED = TRUE
    _OPTIM_ENHANCE_NNULL_DETECTION = TRUE
    _ORDERED_NESTED_LOOP = TRUE
    _NESTED_LOOP_FUDGE = 100
    _NO_OR_EXPANSION = FALSE
    _QUERY_COST_REWRITE = TRUE
    QUERY_REWRITE_EXPRESSION = TRUE
    _IMPROVED_ROW_LENGTH_ENABLED = TRUE
    _USE_NOSEGMENT_INDEXES = FALSE
    _ENABLE_TYPE_DEP_SELECTIVITY = TRUE
    _IMPROVED_OUTERJOIN_CARD = TRUE
    _OPTIMIZER_ADJUST_FOR_NULLS = TRUE
    _OPTIMIZER_CHOOSE_PERMUTATION = 0
    _USE_COLUMN_STATS_FOR_FUNCTION = TRUE
    _SUBQUERY_PRUNING_ENABLED = TRUE
    _SUBQUERY_PRUNING_REDUCTION_FACTOR = 50
    _SUBQUERY_PRUNING_COST_FACTOR = 20
    _LIKE_WITH_BIND_AS_EQUALITY = FALSE
    _TABLE_SCAN_COST_PLUS_ONE = TRUE
    _SORTMERGE_INEQUALITY_JOIN_OFF = FALSE
    _DEFAULT_NON_EQUALITY_SEL_CHECK = TRUE
    _ONESIDE_COLSTAT_FOR_EQUIJOINS = TRUE
    _OPTIMIZER_COST_MODEL = CHOOSE
    _GSETS_ALWAYS_USE_TEMPTABLES = FALSE
    DB_FILE_MULTIBLOCK_READ_COUNT = 128
    _NEW_SORT_COST_ESTIMATE = TRUE
    _GS_ANTI_SEMI_JOIN_ALLOWED = TRUE
    _CPU_TO_IO = 0
    _PRED_MOVE_AROUND = TRUE
    BASE STATISTICAL INFORMATION
    Table stats    Table: ELIGIBILITY_RELATION   Alias: ELIGIBILITY_RELATION
      (Using composite stats)
      (adjusted for partition skews)
      ORIG STATS::  CDN: 11982220  NBLKS:  125493  AVG_ROW_LEN:  71
      PARTCNT::
      PRUNED: 4  ANALYZED: 4  UNANALYZED: 0
      TOTAL ::  CDN: 11982220  NBLKS:  125493  AVG_ROW_LEN:  71
    -- Index stats
      INDEX NAME: ELIGIBILITY_RELATION_1IX  COL#: 3 4 5
        USING COMPOSITE STATS
        TOTAL ::  LVLS: 2   #LB: 38360  #DK: 4164  LB/K: 9  DB/K: 740  CLUF: 3081860
      INDEX NAME: ELIGIBILITY_RELATION_PK  COL#: 2 3 4 5
        USING COMPOSITE STATS
        TOTAL ::  LVLS: 2   #LB: 50740  #DK: 11873160  LB/K: 1  DB/K: 1  CLUF: 9158280
      INDEX NAME: I_SNAP$_ELIGIBILITY_RELATI  COL#: 1
        TOTAL ::  LVLS: 2   #LB: 49600  #DK: 11953600  LB/K: 1  DB/K: 1  CLUF: 8833300
    _OPTIMIZER_PERCENT_PARALLEL = 0
    SINGLE TABLE ACCESS PATH
    Column:   SRC_CODE  Col#: 2      Table: ELIGIBILITY_RELATION   Alias: ELIGIBILITY_RELATION
        NDV: 22087     NULLS: 0         DENS: 4.5276e-05
        NO HISTOGRAM: #BKT: 1 #VAL: 2
    Column:  DEST_CODE  Col#: 4      Table: ELIGIBILITY_RELATION   Alias: ELIGIBILITY_RELATION
        NDV: 11970     NULLS: 0         DENS: 8.3542e-05
        NO HISTOGRAM: #BKT: 1 #VAL: 2
    Column:   SRC_TYPE  Col#: 3      Table: ELIGIBILITY_RELATION   Alias: ELIGIBILITY_RELATION
        NDV: 2         NULLS: 0         DENS: 5.0000e-01
        NO HISTOGRAM: #BKT: 1 #VAL: 2
    Column:  DEST_TYPE  Col#: 5      Table: ELIGIBILITY_RELATION   Alias: ELIGIBILITY_RELATION
        NDV: 2         NULLS: 0         DENS: 5.0000e-01
        NO HISTOGRAM: #BKT: 1 #VAL: 2
      TABLE: ELIGIBILITY_RELATION     ORIG CDN: 11982220  ROUNDED CDN: 1  CMPTD CDN: 0
      Access path: tsc  Resc:  3072  Resp:  3072
      Access path: index (iff)
          Index: ELIGIBILITY_RELATION_PK
      TABLE: ELIGIBILITY_RELATION
          RSC_CPU: 0   RSC_IO: 1243
      IX_SEL:  0.0000e+00  TB_SEL:  1.0000e+00
      Access path: iff  Resc:  1243  Resp:  1243
      Access path: index (unique)
          Index: ELIGIBILITY_RELATION_PK
      TABLE: ELIGIBILITY_RELATION
          RSC_CPU: 0   RSC_IO: 2
      IX_SEL:  8.3457e-08  TB_SEL:  8.3457e-08
      Access path: index (equal)
          Index: ELIGIBILITY_RELATION_1IX
      TABLE: ELIGIBILITY_RELATION
          RSC_CPU: 0   RSC_IO: 68
      IX_SEL:  0.0000e+00  TB_SEL:  2.0886e-05
      Access path: index (eq-unique)
          Index: ELIGIBILITY_RELATION_PK
      TABLE: ELIGIBILITY_RELATION
          RSC_CPU: 0   RSC_IO: 2
      IX_SEL:  0.0000e+00  TB_SEL:  0.0000e+00
      ****** trying bitmap/domain indexes ******
      Access path: index (equal)
          Index: ELIGIBILITY_RELATION_1IX
      TABLE: ELIGIBILITY_RELATION
          RSC_CPU: 0   RSC_IO: 3
      IX_SEL:  2.0886e-05  TB_SEL:  2.0886e-05
      Access path: index (index-only)
          Index: ELIGIBILITY_RELATION_PK
      TABLE: ELIGIBILITY_RELATION
          RSC_CPU: 0   RSC_IO: 5
      IX_SEL:  4.5276e-05  TB_SEL:  4.5276e-05
        SORT resource      Sort statistics
          Sort width:           11 Area size:      628736 Max Area size:    31457280   Degree: 1
          Blocks to Sort:        2 Row size:           21 Rows:        543
          Initial runs:          1 Merge passes:        1 IO Cost / pass:          3
          Total IO sort cost: 2
          Total CPU sort cost: 0
          Total Temp space used: 0
      ****** finished trying bitmap/domain indexes ******
    One row CDN: 1
      BEST_CST: 1.00  PATH: 3  Degree:  1
    OPTIMIZER STATISTICS AND COMPUTATIONS
    GENERAL PLANS
    Join order[1]:  ELIGIBILITY_RELATION[ELIGIBILITY_RELATION]#0
    Best so far: TABLE#: 0  CST:          1  CDN:          1  BYTES:         24
    Final - First Rows Plan:
      JOIN ORDER: 1
      CST: 1  CDN: 1  RSC: 1  RSP: 1  BYTES: 24
      IO-RSC: 1  IO-RSP: 1  CPU-RSC: 0  CPU-RSP: 0
      First Rows Plan
    PARAMETERS USED BY THE OPTIMIZER
    OPTIMIZER_FEATURES_ENABLE = 9.2.0
    OPTIMIZER_MODE/GOAL = Choose
    _OPTIMIZER_PERCENT_PARALLEL = 101
    HASH_AREA_SIZE = 131072
    HASH_JOIN_ENABLED = TRUE
    HASH_MULTIBLOCK_IO_COUNT = 0
    SORT_AREA_SIZE = 65536
    OPTIMIZER_SEARCH_LIMIT = 5
    PARTITION_VIEW_ENABLED = FALSE
    _ALWAYS_STAR_TRANSFORMATION = FALSE
    _B_TREE_BITMAP_PLANS = TRUE
    STAR_TRANSFORMATION_ENABLED = FALSE
    _COMPLEX_VIEW_MERGING = TRUE
    _PUSH_JOIN_PREDICATE = TRUE
    PARALLEL_BROADCAST_ENABLED = TRUE
    OPTIMIZER_MAX_PERMUTATIONS = 2000
    OPTIMIZER_INDEX_CACHING = 0
    _SYSTEM_INDEX_CACHING = 0
    OPTIMIZER_INDEX_COST_ADJ = 1
    OPTIMIZER_DYNAMIC_SAMPLING = 1
    _OPTIMIZER_DYN_SMP_BLKS = 32
    QUERY_REWRITE_ENABLED = TRUE
    QUERY_REWRITE_INTEGRITY = ENFORCED
    _INDEX_JOIN_ENABLED = TRUE
    _SORT_ELIMINATION_COST_RATIO = 0
    _OR_EXPAND_NVL_PREDICATE = TRUE
    _NEW_INITIAL_JOIN_ORDERS = TRUE
    ALWAYS_ANTI_JOIN = CHOOSE
    ALWAYS_SEMI_JOIN = CHOOSE
    _OPTIMIZER_MODE_FORCE = TRUE
    _OPTIMIZER_UNDO_CHANGES = FALSE
    _UNNEST_SUBQUERY = TRUE
    _PUSH_JOIN_UNION_VIEW = TRUE
    _FAST_FULL_SCAN_ENABLED = TRUE
    _OPTIM_ENHANCE_NNULL_DETECTION = TRUE
    _ORDERED_NESTED_LOOP = TRUE
    _NESTED_LOOP_FUDGE = 100
    _NO_OR_EXPANSION = FALSE
    _QUERY_COST_REWRITE = TRUE
    QUERY_REWRITE_EXPRESSION = TRUE
    _IMPROVED_ROW_LENGTH_ENABLED = TRUE
    _USE_NOSEGMENT_INDEXES = FALSE
    _ENABLE_TYPE_DEP_SELECTIVITY = TRUE
    _IMPROVED_OUTERJOIN_CARD = TRUE
    _OPTIMIZER_ADJUST_FOR_NULLS = TRUE
    _OPTIMIZER_CHOOSE_PERMUTATION = 0
    _USE_COLUMN_STATS_FOR_FUNCTION = TRUE
    _SUBQUERY_PRUNING_ENABLED = TRUE
    _SUBQUERY_PRUNING_REDUCTION_FACTOR = 50
    _SUBQUERY_PRUNING_COST_FACTOR = 20
    _LIKE_WITH_BIND_AS_EQUALITY = FALSE
    _TABLE_SCAN_COST_PLUS_ONE = TRUE
    _SORTMERGE_INEQUALITY_JOIN_OFF = FALSE
    _DEFAULT_NON_EQUALITY_SEL_CHECK = TRUE
    _ONESIDE_COLSTAT_FOR_EQUIJOINS = TRUE
    _OPTIMIZER_COST_MODEL = CHOOSE
    _GSETS_ALWAYS_USE_TEMPTABLES = FALSE
    DB_FILE_MULTIBLOCK_READ_COUNT = 128
    _NEW_SORT_COST_ESTIMATE = TRUE
    _GS_ANTI_SEMI_JOIN_ALLOWED = TRUE
    _CPU_TO_IO = 0
    _PRED_MOVE_AROUND = TRUE
    BASE STATISTICAL INFORMATION
    Table stats    Table: SOC_LIST   Alias: SYS_ALIAS_1
      TOTAL ::  CDN: 17584  NBLKS:  653  AVG_ROW_LEN:  260
    -- Index stats
      INDEX NAME: I_SNAP$_SOC_LIST  COL#: 1
        TOTAL ::  LVLS: 1   #LB: 64  #DK: 17487  LB/K: 1  DB/K: 1  CLUF: 699
      INDEX NAME: SOC_LIST_1IX  COL#: 3
        TOTAL ::  LVLS: 1   #LB: 47  #DK: 17487  LB/K: 1  DB/K: 1  CLUF: 14065
    _OPTIMIZER_PERCENT_PARALLEL = 0
    SINGLE TABLE ACCESS PATH
      TABLE: SOC_LIST     ORIG CDN: 17584  ROUNDED CDN: 879  CMPTD CDN: 879
      Access path: tsc  Resc:  18  Resp:  18
      ****** trying bitmap/domain indexes ******
      ****** finished trying bitmap/domain indexes ******
      BEST_CST: 18.00  PATH: 2  Degree:  1
    OPTIMIZER STATISTICS AND COMPUTATIONS
    GENERAL PLANS
    Join order[1]:  SOC_LIST[SYS_ALIAS_1]#0
    Best so far: TABLE#: 0  CST:         18  CDN:        879  BYTES:       8790
    Final - All Rows Plan:
      JOIN ORDER: 1
      CST: 18  CDN: 879  RSC: 18  RSP: 18  BYTES: 8790
      IO-RSC: 18  IO-RSP: 18  CPU-RSC: 0  CPU-RSP: 0
    PARAMETERS USED BY THE OPTIMIZER
    OPTIMIZER_FEATURES_ENABLE = 9.2.0
    OPTIMIZER_MODE/GOAL = Choose
    _OPTIMIZER_PERCENT_PARALLEL = 101
    HASH_AREA_SIZE = 131072
    HASH_JOIN_ENABLED = TRUE
    HASH_MULTIBLOCK_IO_COUNT = 0
    SORT_AREA_SIZE = 65536
    OPTIMIZER_SEARCH_LIMIT = 5
    PARTITION_VIEW_ENABLED = FALSE
    _ALWAYS_STAR_TRANSFORMATION = FALSE
    _B_TREE_BITMAP_PLANS = TRUE
    STAR_TRANSFORMATION_ENABLED = FALSE
    _COMPLEX_VIEW_MERGING = TRUE
    _PUSH_JOIN_PREDICATE = TRUE
    PARALLEL_BROADCAST_ENABLED = TRUE
    OPTIMIZER_MAX_PERMUTATIONS = 2000
    OPTIMIZER_INDEX_CACHING = 0
    _SYSTEM_INDEX_CACHING = 0
    OPTIMIZER_INDEX_COST_ADJ = 1
    OPTIMIZER_DYNAMIC_SAMPLING = 1
    _OPTIMIZER_DYN_SMP_BLKS = 32
    QUERY_REWRITE_ENABLED = TRUE
    QUERY_REWRITE_INTEGRITY = ENFORCED
    _INDEX_JOIN_ENABLED = TRUE
    _SORT_ELIMINATION_COST_RATIO = 0
    _OR_EXPAND_NVL_PREDICATE = TRUE
    _NEW_INITIAL_JOIN_ORDERS = TRUE
    ALWAYS_ANTI_JOIN = CHOOSE
    ALWAYS_SEMI_JOIN = CHOOSE
    _OPTIMIZER_MODE_FORCE = TRUE
    _OPTIMIZER_UNDO_CHANGES = FALSE
    _UNNEST_SUBQUERY = TRUE
    _PUSH_JOIN_UNION_VIEW = TRUE
    _FAST_FULL_SCAN_ENABLED = TRUE
    _OPTIM_ENHANCE_NNULL_DETECTION = TRUE
    _ORDERED_NESTED_LOOP = TRUE
    _NESTED_LOOP_FUDGE = 100
    _NO_OR_EXPANSION = FALSE
    _QUERY_COST_REWRITE = TRUE
    QUERY_REWRITE_EXPRESSION = TRUE
    _IMPROVED_ROW_LENGTH_ENABLED = TRUE
    _USE_NOSEGMENT_INDEXES = FALSE
    _ENABLE_TYPE_DEP_SELECTIVITY = TRUE
    _IMPROVED_OUTERJOIN_CARD = TRUE
    _OPTIMIZER_ADJUST_FOR_NULLS = TRUE
    _OPTIMIZER_CHOOSE_PERMUTATION = 0
    _USE_COLUMN_STATS_FOR_FUNCTION = TRUE
    _SUBQUERY_PRUNING_ENABLED = TRUE
    _SUBQUERY_PRUNING_REDUCTION_FACTOR = 50
    _SUBQUERY_PRUNING_COST_FACTOR = 20
    _LIKE_WITH_BIND_AS_EQUALITY = FALSE
    _TABLE_SCAN_COST_PLUS_ONE = TRUE
    _SORTMERGE_INEQUALITY_JOIN_OFF = FALSE
    _DEFAULT_NON_EQUALITY_SEL_CHECK = TRUE
    _ONESIDE_COLSTAT_FOR_EQUIJOINS = TRUE
    _OPTIMIZER_COST_MODEL = CHOOSE
    _GSETS_ALWAYS_USE_TEMPTABLES = FALSE
    DB_FILE_MULTIBLOCK_READ_COUNT = 128
    _NEW_SORT_COST_ESTIMATE = TRUE
    _GS_ANTI_SEMI_JOIN_ALLOWED = TRUE
    _CPU_TO_IO = 0
    _PRED_MOVE_AROUND = TRUE
    BASE STATISTICAL INFORMATION
    Table stats    Table: SOC_LIST   Alias: SOC
      TOTAL ::  CDN: 17584  NBLKS:  653  AVG_ROW_LEN:  260
    -- Index stats
      INDEX NAME: I_SNAP$_SOC_LIST  COL#: 1
        TOTAL ::  LVLS: 1   #LB: 64  #DK: 17487  LB/K: 1  DB/K: 1  CLUF: 699
      INDEX NAME: SOC_LIST_1IX  COL#: 3
        TOTAL ::  LVLS: 1   #LB: 47  #DK: 17487  LB/K: 1  DB/K: 1  CLUF: 14065
    _OPTIMIZER_PERCENT_PARALLEL = 0
    SINGLE TABLE ACCESS PATH
      TABLE: SOC_LIST     ORIG CDN: 17584  ROUNDED CDN: 17584  CMPTD CDN: 17584
      Access path: tsc  Resc:  18  Resp:  18
      ****** trying bitmap/domain indexes ******
      ****** finished trying bitmap/domain indexes ******
      BEST_CST: 18.00  PATH: 2  Degree:  1
    OPTIMIZER STATISTICS AND COMPUTATIONS
    GENERAL PLANS
    Join order[1]:  SOC_LIST[SOC]#0
    Best so far: TABLE#: 0  CST:         18  CDN:      17584  BYTES:          0
    Final - All Rows Plan:
      JOIN ORDER: 1
      CST: 18  CDN: 17584  RSC: 18  RSP: 18  BYTES: 0
      IO-RSC: 18  IO-RSP: 18  CPU-RSC: 0  CPU-RSP: 0
    BINDS #1:
    bind 0: dty=96 mxl=32(01) mal=00 scl=00 pre=00 oacflg=03 oacfl2=0 size=32 offset=0
       bfp=800003ffefea9490 bln=32 avl=01 flg=05
       value="N"
    EXEC #1:c=0,e=159,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=4,tim=3017737385286
    WAIT #1: nam='SQL*Net message to client' ela= 2 p1=1413697536 p2=1 p3=0
    WAIT #1: nam='db file sequential read' ela= 9958 p1=586 p2=128001 p3=1
    WAIT #1: nam='db file scattered read' ela= 619 p1=586 p2=128002 p3=4
    WAIT #1: nam='db file sequential read' ela= 12880 p1=2535 p2=39498 p3=1
    WAIT #1: nam='db file sequential read' ela= 39878 p1=2536 p2=68185 p3=1
    WAIT #1: nam='db file sequential read' ela= 10240 p1=2536 p2=68520 p3=1
    WAIT #1: nam='db file sequential read' ela= 15805 p1=2535 p2=45162 p3=1
    WAIT #1: nam='db file sequential read' ela= 11733 p1=2535 p2=178335 p3=1
    WAIT #1: nam='db file sequential read' ela= 11863 p1=2535 p2=178798 p3=1
    WAIT #1: nam='db file sequential read' ela= 4886 p1=2535 p2=33834 p3=1
    WAIT #1: nam='db file sequential read' ela= 12067 p1=2536 p2=60958 p3=1
    WAIT #1: nam='db file sequential read' ela= 16496 p1=2535 p2=61232 p3=1
    WAIT #1: nam='db file sequential read' ela= 8970 p1=2535 p2=50826 p3=1
    WAIT #1: nam='db file sequential read' ela= 10940 p1=2536 p2=260451 p3=1
    WAIT #1: nam='db file sequential read' ela= 8508 p1=2536 p2=261538 p3=1
    WAIT #1: nam='db file scattered read' ela= 32000 p1=1613 p2=4622 p3=35
    WAIT #1: nam='db file sequential read' ela= 1762 p1=2535 p2=178799 p3=1
    WAIT #1: nam='db file sequential read' ela= 341 p1=2535 p2=61233 p3=1
    WAIT #1: nam='db file scattered read' ela= 50494 p1=957 p2=230324 p3=35
    WAIT #1: nam='db file scattered read' ela= 36716 p1=5 p2=588169 p3=35
    WAIT #1: nam='db file scattered read' ela= 45241 p1=2326 p2=227427 p3=35
    WAIT #1: nam='db file sequential read' ela= 11783 p1=2535 p2=68809 p3=1
    WAIT #1: nam='db file scattered read' ela= 26720 p1=471 p2=102809 p3=35
    WAIT #1: nam='db file scattered read' ela= 31074 p1=1496 p2=97015 p3=35
    WAIT #1: nam='db file scattered read' ela= 39750 p1=586 p2=69452 p3=35
    WAIT #1: nam='db file scattered read' ela= 30923 p1=1613 p2=8636 p3=35
    WAIT #1: nam='db file scattered read' ela= 46328 p1=957 p2=67050 p3=35
    WAIT #1: nam='db file scattered read' ela= 34570 p1=5 p2=362823 p3=35
    WAIT #1: nam='db file scattered read' ela= 43343 p1=2326 p2=240311 p3=35
    WAIT #1: nam='db file scattered read' ela= 30818 p1=471 p2=76417 p3=35
    WAIT #1: nam='db file scattered read' ela= 19167 p1=1496 p2=480612 p3=35
    WAIT #1: nam='db file scattered read' ela= 26405 p1=586 p2=193036 p3=35
    WAIT #1: nam='db file scattered read' ela= 35374 p1=1613 p2=201565 p3=35
    WAIT #1: nam='db file scattered read' ela= 14275 p1=957 p2=15804 p3=7
    FETCH #1:c=190000,e=926019,p=552,cr=43429,cu=0,mis=0,r=1,dep=0,og=4,tim=3017738311433
    WAIT #1: nam='SQL*Net message from client' ela= 2749 p1=1413697536 p2=1 p3=0
    WAIT #1: nam='SQL*Net message to client' ela= 2 p1=1413697536 p2=1 p3=0
    FETCH #1:c=0,e=79,p=0,cr=0,cu=0,mis=0,r=1,dep=0,og=4,tim=3017738314443
    *** 2013-06-10 13:35:44.078
    WAIT #1: nam='SQL*Net message from client' ela= 18650883 p1=1413697536 p2=1 p3=0
    STAT #1 id=1 cnt=2 pid=0 pos=1 obj=0 op='UNION-ALL  (cr=43429 r=552 w=0 time=926047 us)'
    STAT #1 id=2 cnt=1 pid=1 pos=1 obj=0 op='SORT AGGREGATE (cr=43429 r=552 w=0 time=925989 us)'
    STAT #1 id=3 cnt=157 pid=2 pos=1 obj=0 op='FILTER  (cr=43429 r=552 w=0 time=925909 us)'
    STAT #1 id=4 cnt=14296 pid=3 pos=1 obj=5769120 op='TABLE ACCESS FULL SOC_LIST (cr=541 r=537 w=0 time=579577 us)'
    STAT #1 id=5 cnt=157 pid=3 pos=2 obj=0 op='PARTITION HASH SINGLE PARTITION: KEY KEY (cr=42888 r=15 w=0 time=285564 us)'
    STAT #1 id=6 cnt=157 pid=5 pos=1 obj=5401812 op='INDEX UNIQUE SCAN ELIGIBILITY_RELATION_PK PARTITION: KEY KEY (cr=42888 r=15 w=0 time=265355 us)'
    STAT #1 id=7 cnt=1 pid=1 pos=2 obj=0 op='SORT AGGREGATE (cr=0 r=0 w=0 time=4 us)'
    STAT #1 id=8 cnt=0 pid=7 pos=1 obj=0 op='FILTER  (cr=0 r=0 w=0 time=1 us)'
    STAT #1 id=9 cnt=0 pid=8 pos=1 obj=5769120 op='TABLE ACCESS FULL SOC_LIST '
    QUERY
    select 'close cursor' from dual
    =====================
    PARSING IN CURSOR #1 len=31 dep=0 uid=33 oct=3 lid=33 tim=3017756967074 hv=3487944275 ad='48de6a60'
    select 'close cursor' from dual
    END OF STMT
    PARSE #1:c=0,e=986,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=4,tim=3017756967063
    BINDS #1:
    EXEC #1:c=0,e=47,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=4,tim=3017756967278
    WAIT #1: nam='SQL*Net message to client' ela= 3 p1=1413697536 p2=1 p3=0
    FETCH #1:c=0,e=134,p=0,cr=3,cu=0,mis=0,r=1,dep=0,og=4,tim=3017756967515
    WAIT #1: nam='SQL*Net message from client' ela= 2682 p1=1413697536 p2=1 p3=0
    FETCH #1:c=0,e=0,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=0,tim=3017756970325
    WAIT #1: nam='SQL*Net message to client' ela= 1 p1=1413697536 p2=1 p3=0
    *** 2013-06-10 13:35:57.804
    WAIT #1: nam='SQL*Net message from client' ela= 13399621 p1=1413697536 p2=1 p3=0
    =====================
    PARSING IN CURSOR #3 len=116 dep=1 uid=0 oct=3 lid=0 tim=3017770371839 hv=431456802 ad='39fbad80'
    select o.owner#,o.name,o.namespace,o.remoteowner,o.linkname,o.subname,o.dataobj#,o.flags from obj$ o where o.obj#=:1
    END OF STMT
    PARSE #3:c=0,e=1249,p=0,cr=0,cu=0,mis=1,r=0,dep=1,og=0,tim=3017770371828
    BINDS #3:
    bind 0: dty=2 mxl=22(22) mal=00 scl=00 pre=00 oacflg=08 oacfl2=1 size=24 offset=0
       bfp=800003ffefea7a90 bln=22 avl=03 flg=05
       value=172
    EXEC #3:c=0,e=666,p=0,cr=0,cu=0,mis=0,r=0,dep=1,og=4,tim=3017770372725
    WAIT #3: nam='db file sequential read' ela= 10318 p1=1 p2=978 p3=1
    WAIT #3: nam='db file sequential read' ela= 10292 p1=1 p2=318 p3=1
    FETCH #3:c=10000,e=21071,p=2,cr=3,cu=0,mis=0,r=1,dep=1,og=4,tim=3017770393830
    STAT #1 id=1 cnt=1 pid=0 pos=1 obj=172 op='TABLE ACCESS FULL DUAL (cr=3 r=0 w=0 time=121 us)'
    QUERY
    ALTER SESSION SET EVENTS '10053 trace name context off'
    =====================
    PARSING IN CURSOR #1 len=55 dep=0 uid=33 oct=42 lid=33 tim=3017770394351 hv=3500836485 ad='3bed84c8'
    ALTER SESSION SET EVENTS '10053 trace name context off'
    END OF STMT
    PARSE #1:c=0,e=227,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=4,tim=3017770394344
    BINDS #1:
    EXEC #1:c=0,e=177,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=4,tim=3017770394624
    WAIT #1: nam='SQL*Net message to client' ela= 4 p1=1413697536 p2=1 p3=0
    *** 2013-06-10 13:36:13.139
    WAIT #1: nam='SQL*Net message from client' ela= 14951473 p1=1413697536 p2=1 p3=0
    =====================
    PARSE ERROR #1:len=55 dep=0 uid=33 oct=42 lid=33 tim=3017785346905 err=911
    ALTER SESSION SET EVENT=¿10046 trace name context off¿
    WAIT #1: nam='SQL*Net break/reset to client' ela= 2 p1=1413697536 p2=1 p3=0
    WAIT #1: nam='SQL*Net break/reset to client' ela= 2358 p1=1413697536 p2=0 p3=0
    WAIT #1: nam='SQL*Net message to client' ela= 3 p1=1413697536 p2=1 p3=0
    *** 2013-06-10 13:36:53.497
    WAIT #1: nam='SQL*Net message from client' ela= 39408861 p1=1413697536 p2=1 p3=0
    =====================
    PARSE ERROR #1:len=56 dep=0 uid=33 oct=42 lid=33 tim=3017824759339 err=911
    ALTER SESSION SET EVENTS ¿10046 trace name context off¿
    WAIT #1: nam='SQL*Net break/reset to client' ela= 4 p1=1413697536 p2=1 p3=0
    WAIT #1: nam='SQL*Net break/reset to client' ela= 2342 p1=1413697536 p2=0 p3=0
    WAIT #1: nam='SQL*Net message to client' ela= 4 p1=1413697536 p2=1 p3=0
    *** 2013-06-10 13:37:17.528
    WAIT #1: nam='SQL*Net message from client' ela= 23463963 p1=1413697536 p2=1 p3=0
    =====================
    PARSE ERROR #1:len=57 dep=0 uid=33 oct=42 lid=33 tim=3017848226738 err=911
    ALTER SESSION SET EVENTS '10043 trace name context off';
    WAIT #1: nam='SQL*Net break/reset to client' ela= 1 p1=1413697536 p2=1 p3=0
    WAIT #1: nam='SQL*Net break/reset to client' ela= 2305 p1=1413697536 p2=0 p3=0
    WAIT #1: nam='SQL*Net message to client' ela= 3 p1=1413697536 p2=1 p3=0
    WAIT #1: nam='SQL*Net message from client' ela= 9416071 p1=1413697536 p2=1 p3=0
    =====================
    PARSING IN CURSOR #1 len=55 dep=0 uid=33 oct=42 lid=33 tim=3017857646552 hv=2635134026 ad='4b92b7e8'
    ALTER SESSION SET EVENTS '10043 trace name context off'
    END OF STMT
    PARSE #1:c=0,e=616,p=0,cr=0,cu=0,mis=1,r=0,dep=0,og=4,tim=3017857646541
    BINDS #1:
    EXEC #1:c=0,e=285,p=0,cr=0,cu=0,mis=0,r=0,dep=0,og=4,tim=3017857647009
    WAIT #1: nam='SQL*Net message to client' ela= 4 p1=1413697536 p2=1 p3=0
    *** 2013-06-10 13:58:46.112
    WAIT #1: nam='SQL*Net message from client' ela= 1248974802 p1=1413697536 p2=1 p3=0
    XCTEND rlbk=0, rd_only=1

  • Whats wrong with the UNION ALL

    Hi All
    I have the following table and data
    WITH sample_data AS
         (SELECT '1' AS bin_data_id, '539' AS traffic_sample_id,
                 '1100' AS end_intv_time, '0' AS bin_1_data, '34' AS bin_2_data,
                 '19' AS bin_3_data
            FROM DUAL
          UNION ALL
          SELECT '2', '539', '1200', '0', '65', '18'
            FROM DUAL
          UNION ALL
          SELECT '3', '539', '1300', '0', '51', '17'
            FROM DUAL
          UNION ALL
          SELECT '4', '539', '1400', '0', '65', '27'
            FROM DUAL
          UNION ALL
          SELECT '5', '539', '1500', '0', '99', '48'
            FROM DUAL
          UNION ALL
          SELECT '6', '539', '1600', '0', '426', '138'
            FROM DUAL
          UNION ALL
          SELECT '7', '539', '1700', '0', '151', '62'
            FROM DUAL
          UNION ALL
          SELECT '8', '539', '1800', '0', '80', '32'
            FROM DUAL
          UNION ALL
          SELECT '9', '539', '1900', '0', '31', '11'
            FROM DUAL
          UNION ALL
          SELECT '10', '539', '2000', '0', '37', '11'
            FROM DUAL
          UNION ALL
          SELECT '11', '539', '2100', '0', '24', '9'
            FROM DUAL
          UNION ALL
          SELECT '12', '539', '2200', '0', '16', '5'
            FROM DUAL
          UNION ALL
          SELECT '13', '539', '2300', '0', '27', '12'
            FROM DUAL
          UNION ALL
          SELECT '14', '539', '2400', '0', '55', '20'
            FROM DUAL
          UNION ALL
          SELECT '15', '539', '0100', '0', '18', '9'
            FROM DUAL
          UNION ALL
          SELECT '16', '539', '0200', '0', '134', '52'
            FROM DUAL
          UNION ALL
          SELECT '17', '539', '0300', '0', '230', '69'
            FROM DUAL
          UNION ALL
          SELECT '18', '539', '0400', '0', '15', '7'
            FROM DUAL
          UNION ALL
          SELECT '19', '539', '0500', '0', '6', '5'
            FROM DUAL
          UNION ALL
          SELECT '20', '539', '0600', '0', '47', '23'
            FROM DUAL
          UNION ALL
          SELECT '21', '539', '0700', '0', '100', '41'
            FROM DUAL
          UNION ALL
          SELECT '22', '539', '0800', '0', '196', '43'
            FROM DUAL
          UNION ALL
          SELECT '23', '539', '0900', '0', '81', '20'
            FROM DUAL
          UNION ALL
          SELECT '24', '539', '1000', '0', '58', '28'
            FROM DUAL
          UNION ALL
          SELECT '25', '539', '1100', '0', '58', '24'
            FROM DUAL
          UNION ALL
          SELECT '26', '539', '1200', '0', '60', '22'
            FROM DUAL
          UNION ALL
          SELECT '27', '539', '1300', '0', '42', '18'
            FROM DUAL
          UNION ALL
          SELECT '28', '539', '1400', '0', '53', '15'
            FROM DUAL
          UNION ALL
          SELECT '29', '539', '1500', '0', '107', '43'
            FROM DUAL
          UNION ALL
          SELECT '30', '539', '1600', '0', '441', '146'
            FROM DUAL
          UNION ALL
          SELECT '31', '539', '1700', '0', '128', '34'
            FROM DUAL
          UNION ALL
          SELECT '32', '539', '1800', '0', '67', '27'
            FROM DUAL
          UNION ALL
          SELECT '33', '539', '1900', '0', '45', '22'
            FROM DUAL
          UNION ALL
          SELECT '34', '539', '2000', '0', '24', '13'
            FROM DUAL
          UNION ALL
          SELECT '35', '539', '2100', '0', '16', '11'
            FROM DUAL
          UNION ALL
          SELECT '36', '539', '2200', '0', '28', '5'
            FROM DUAL
          UNION ALL
          SELECT '37', '539', '2300', '0', '23', '8'
            FROM DUAL
          UNION ALL
          SELECT '38', '539', '2400', '0', '73', '11'
            FROM DUAL
          UNION ALL
          SELECT '39', '539', '0100', '0', '16', '3'
            FROM DUAL
          UNION ALL
          SELECT '40', '539', '0200', '0', '243', '82'
            FROM DUAL
          UNION ALL
          SELECT '41', '539', '0300', '0', '121', '55'
            FROM DUAL
          UNION ALL
          SELECT '42', '539', '0400', '0', '17', '4'
            FROM DUAL
          UNION ALL
          SELECT '43', '539', '0500', '0', '5', '5'
            FROM DUAL
          UNION ALL
          SELECT '44', '539', '0600', '0', '41', '15'
            FROM DUAL
          UNION ALL
          SELECT '45', '539', '0700', '0', '101', '34'
            FROM DUAL
          UNION ALL
          SELECT '46', '539', '0800', '0', '184', '43'
            FROM DUAL
          UNION ALL
          SELECT '47', '539', '0900', '0', '69', '15'
            FROM DUAL
          UNION ALL
          SELECT '48', '539', '1000', '0', '51', '18'
            FROM DUAL
          UNION ALL
          SELECT '49', '539', '1100', '0', '61', '25'
            FROM DUAL)
    SELECT *
      FROM sample_data;Now i have 2 queries , the one below query is to just get the last bin_data_id per each traffic_sample_id
    SELECT ROW_NUMBER () OVER (PARTITION BY traffic_sample_id ORDER BY bin_data_id)
                                                                            AS rn_1,
           COUNT (bin_data_id) OVER (PARTITION BY traffic_sample_id) AS cnt_1,TRAFFIC_SAMPLE_ID,bin_data_id,(END_INTV_TIME_1+100) AS END_INTV_TIME,BIN_1_DATA,BIN_2_DATA,BIN_3_DATA
      FROM
    SELECT ROW_NUMBER() OVER(ORDER BY TRAFFIC_SAMPLE_ID) AS RN,traffic_sample_id,
           end_intv_time,
           last_value(end_intv_time) OVER (PARTITION BY traffic_sample_id ORDER BY bin_data_id ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING)
                                                                            AS END_INTV_TIME_1,
           LAST_VALUE (bin_data_id) OVER (PARTITION BY traffic_sample_id ORDER BY bin_data_id ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING)
                                                                            AS bin_data_id,
           LAST_VALUE (bin_1_data) OVER (PARTITION BY traffic_sample_id ORDER BY bin_data_id ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING)
                                                                            AS bin_1_data,
           LAST_VALUE (bin_2_data) OVER (PARTITION BY traffic_sample_id ORDER BY bin_data_id ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING)
                                                                            AS bin_2_data,
           LAST_VALUE (bin_3_data) OVER (PARTITION BY traffic_sample_id ORDER BY bin_data_id ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING)
                                                                            AS bin_3_data
      FROM bin_data
      WHERE RN=BIN_DATA_ID
      and traffic_sample_id=539And now i'm doing the UNION ALL the above query with a different query as below
    select rn_1,cnt_1,traffic_sample_id, bin_data_id, to_number(end_intv_time),bin_1_data,bin_2_data,bin_3_data
    from
    select ROW_NUMBER () OVER (PARTITION BY traffic_sample_id ORDER BY bin_data_id)
                                                                            AS rn_1,
           COUNT (bin_data_id) OVER (PARTITION BY traffic_sample_id) AS cnt_1,
           traffic_sample_id, bin_data_id, end_intv_time, direction,bin_1_data,bin_2_data,bin_3_data
           from
    SELECT ROW_NUMBER () OVER (PARTITION BY traffic_sample_id ORDER BY bin_data_id)
                                                                            AS rn,
           COUNT (bin_data_id) OVER (PARTITION BY traffic_sample_id) AS cnt,
           traffic_sample_id, bin_data_id, end_intv_time, direction,bin_1_data,bin_2_data,bin_3_data
      FROM bin_data
      where rn!=1
      where traffic_sample_id=539
      union all
      SELECT ROW_NUMBER () OVER (PARTITION BY traffic_sample_id ORDER BY bin_data_id)
                                                                            AS rn_1,
           COUNT (bin_data_id) OVER (PARTITION BY traffic_sample_id) AS cnt_1,TRAFFIC_SAMPLE_ID,bin_data_id,(END_INTV_TIME_1+100) AS END_INTV_TIME,BIN_1_DATA,BIN_2_DATA,BIN_3_DATA
      FROM
    SELECT ROW_NUMBER() OVER(ORDER BY TRAFFIC_SAMPLE_ID) AS RN,traffic_sample_id,
           end_intv_time,
           last_value(end_intv_time) OVER (PARTITION BY traffic_sample_id ORDER BY bin_data_id ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING)
                                                                            AS END_INTV_TIME_1,
           LAST_VALUE (bin_data_id) OVER (PARTITION BY traffic_sample_id ORDER BY bin_data_id ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING)
                                                                            AS bin_data_id,
           LAST_VALUE (bin_1_data) OVER (PARTITION BY traffic_sample_id ORDER BY bin_data_id ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING)
                                                                            AS bin_1_data,
           LAST_VALUE (bin_2_data) OVER (PARTITION BY traffic_sample_id ORDER BY bin_data_id ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING)
                                                                            AS bin_2_data,
           LAST_VALUE (bin_3_data) OVER (PARTITION BY traffic_sample_id ORDER BY bin_data_id ROWS BETWEEN UNBOUNDED PRECEDING AND UNBOUNDED FOLLOWING)
                                                                            AS bin_3_data
      FROM bin_data
      WHERE RN=BIN_DATA_ID
      and traffic_sample_id=539Now all works fine and appends the single record to the set of records and i get the following data set.
    RN_1     CNT_1     TRAFFIC_SAMPLE_ID     BIN_DATA_ID     TO_NUMBER(END_INTV_TIME)     BIN_1_DATA     BIN_2_DATA     BIN_3_DATA
    1     48     539     2     1200     0     65     18
    2     48     539     3     1300     0     51     17
    3     48     539     4     1400     0     65     27
    4     48     539     5     1500     0     99     48
    5     48     539     6     1600     0     426     138
    6     48     539     7     1700     0     151     62
    7     48     539     8     1800     0     80     32
    8     48     539     9     1900     0     31     11
    9     48     539     10     2000     0     37     11
    10     48     539     11     2100     0     24     9
    11     48     539     12     2200     0     16     5
    12     48     539     13     2300     0     27     12
    13     48     539     14     2400     0     55     20
    14     48     539     15     100     0     18     9
    15     48     539     16     200     0     134     52
    16     48     539     17     300     0     230     69
    17     48     539     18     400     0     15     7
    18     48     539     19     500     0     6     5
    19     48     539     20     600     0     47     23
    20     48     539     21     700     0     100     41
    21     48     539     22     800     0     196     43
    22     48     539     23     900     0     81     20
    23     48     539     24     1000     0     58     28
    24     48     539     25     1100     0     58     24
    25     48     539     26     1200     0     60     22
    26     48     539     27     1300     0     42     18
    27     48     539     28     1400     0     53     15
    28     48     539     29     1500     0     107     43
    29     48     539     30     1600     0     441     146
    30     48     539     31     1700     0     128     34
    31     48     539     32     1800     0     67     27
    32     48     539     33     1900     0     45     22
    33     48     539     34     2000     0     24     13
    34     48     539     35     2100     0     16     11
    35     48     539     36     2200     0     28     5
    36     48     539     37     2300     0     23     8
    37     48     539     38     2400     0     73     11
    38     48     539     39     100     0     16     3
    39     48     539     40     200     0     243     82
    40     48     539     41     300     0     121     55
    41     48     539     42     400     0     17     4
    42     48     539     43     500     0     5     5
    43     48     539     44     600     0     41     15
    44     48     539     45     700     0     101     34
    45     48     539     46     800     0     184     43
    46     48     539     47     900     0     69     15
    47     48     539     48     1000     0     51     18
    48     48     539     49     1100     0     61     25
    1     1     539     49     1200     0     61     25But please help me , all the above queries are working fine when i check by traffic_sample_id, for example if i remove the WHERE CLAUSE, WHERE TRAFFIC_SAMPLE_ID=539 from both the queries in the UNION ALL to get all the TRAFFIC_SAMPLE_ID's the single records are not getting appended to the resultant data set. Please need help.
    Thanks

    Please consider the following sample data
    WITH sample_data AS
         (SELECT '1' AS bin_data_id, '539' AS traffic_sample_id,
                 '1100' AS end_intv_time, '0' AS bin_1_data, '34' AS bin_2_data,
                 '19' AS bin_3_data
            FROM DUAL
          UNION ALL
          SELECT '2', '539', '1200', '0', '65', '18'
            FROM DUAL
          UNION ALL
          SELECT '3', '539', '1300', '0', '51', '17'
            FROM DUAL
          UNION ALL
          SELECT '4', '539', '1400', '0', '65', '27'
            FROM DUAL
          UNION ALL
          SELECT '5', '539', '1500', '0', '99', '48'
            FROM DUAL
          UNION ALL
          SELECT '6', '539', '1600', '0', '426', '138'
            FROM DUAL
          UNION ALL
          SELECT '7', '539', '1700', '0', '151', '62'
            FROM DUAL
          UNION ALL
          SELECT '8', '539', '1800', '0', '80', '32'
            FROM DUAL
          UNION ALL
          SELECT '9', '539', '1900', '0', '31', '11'
            FROM DUAL
          UNION ALL
          SELECT '10', '539', '2000', '0', '37', '11'
            FROM DUAL
          UNION ALL
          SELECT '11', '539', '2100', '0', '24', '9'
            FROM DUAL
          UNION ALL
          SELECT '12', '539', '2200', '0', '16', '5'
            FROM DUAL
          UNION ALL
          SELECT '13', '539', '2300', '0', '27', '12'
            FROM DUAL
          UNION ALL
          SELECT '14', '539', '2400', '0', '55', '20'
            FROM DUAL
          UNION ALL
          SELECT '15', '539', '0100', '0', '18', '9'
            FROM DUAL
          UNION ALL
          SELECT '16', '539', '0200', '0', '134', '52'
            FROM DUAL
          UNION ALL
          SELECT '17', '539', '0300', '0', '230', '69'
            FROM DUAL
          UNION ALL
          SELECT '18', '539', '0400', '0', '15', '7'
            FROM DUAL
          UNION ALL
          SELECT '19', '539', '0500', '0', '6', '5'
            FROM DUAL
          UNION ALL
          SELECT '20', '539', '0600', '0', '47', '23'
            FROM DUAL
          UNION ALL
          SELECT '21', '539', '0700', '0', '100', '41'
            FROM DUAL
          UNION ALL
          SELECT '22', '539', '0800', '0', '196', '43'
            FROM DUAL
          UNION ALL
          SELECT '23', '539', '0900', '0', '81', '20'
            FROM DUAL
          UNION ALL
          SELECT '24', '539', '1000', '0', '58', '28'
            FROM DUAL
          UNION ALL
          SELECT '25', '539', '1100', '0', '58', '24'
            FROM DUAL
          UNION ALL
          SELECT '26', '539', '1200', '0', '60', '22'
            FROM DUAL
          UNION ALL
          SELECT '27', '539', '1300', '0', '42', '18'
            FROM DUAL
          UNION ALL
          SELECT '28', '539', '1400', '0', '53', '15'
            FROM DUAL
          UNION ALL
          SELECT '29', '539', '1500', '0', '107', '43'
            FROM DUAL
          UNION ALL
          SELECT '30', '539', '1600', '0', '441', '146'
            FROM DUAL
          UNION ALL
          SELECT '31', '539', '1700', '0', '128', '34'
            FROM DUAL
          UNION ALL
          SELECT '32', '539', '1800', '0', '67', '27'
            FROM DUAL
          UNION ALL
          SELECT '33', '539', '1900', '0', '45', '22'
            FROM DUAL
          UNION ALL
          SELECT '34', '539', '2000', '0', '24', '13'
            FROM DUAL
          UNION ALL
          SELECT '35', '539', '2100', '0', '16', '11'
            FROM DUAL
          UNION ALL
          SELECT '36', '539', '2200', '0', '28', '5'
            FROM DUAL
          UNION ALL
          SELECT '37', '539', '2300', '0', '23', '8'
            FROM DUAL
          UNION ALL
          SELECT '38', '539', '2400', '0', '73', '11'
            FROM DUAL
          UNION ALL
          SELECT '39', '539', '0100', '0', '16', '3'
            FROM DUAL
          UNION ALL
          SELECT '40', '539', '0200', '0', '243', '82'
            FROM DUAL
          UNION ALL
          SELECT '41', '539', '0300', '0', '121', '55'
            FROM DUAL
          UNION ALL
          SELECT '42', '539', '0400', '0', '17', '4'
            FROM DUAL
          UNION ALL
          SELECT '43', '539', '0500', '0', '5', '5'
            FROM DUAL
          UNION ALL
          SELECT '44', '539', '0600', '0', '41', '15'
            FROM DUAL
          UNION ALL
          SELECT '45', '539', '0700', '0', '101', '34'
            FROM DUAL
          UNION ALL
          SELECT '46', '539', '0800', '0', '184', '43'
            FROM DUAL
          UNION ALL
          SELECT '47', '539', '0900', '0', '69', '15'
            FROM DUAL
          UNION ALL
          SELECT '48', '539', '1000', '0', '51', '18'
            FROM DUAL
          UNION ALL
          SELECT '49', '539', '1100', '0', '61', '25'
            FROM DUAL
          UNION ALL
          SELECT '11033', '613','1300','3','421','124'
            FROM DUAL
          UNION ALL
          SELECT '11034', '613', '1400', '4', '419', '128'
            FROM DUAL
          UNION ALL
          SELECT '11035', '613', '1500', '5', '522', '169'
            FROM DUAL
          UNION ALL
          SELECT '11036', '613', '1600', '5', '596', '185'
            FROM DUAL
          UNION ALL
          SELECT '11037', '613', '1700', '9', '667', '150'
            FROM DUAL
          UNION ALL
          SELECT '11038', '613', '1800', '4', '522', '105'
            FROM DUAL
          UNION ALL
          SELECT '11039', '613', '1900', '2', '428', '80'
            FROM DUAL
          UNION ALL
          SELECT '11040', '613', '2000', '5', '304', '73'
            FROM DUAL
          UNION ALL
          SELECT '11041', '613', '2100', '1', '284', '61'
            FROM DUAL
          UNION ALL
          SELECT '11042', '613', '2200', '3', '245', '45'
            FROM DUAL
          UNION ALL
          SELECT '11043', '613', '2300', '6', '193', '39'
            FROM DUAL
          UNION ALL
          SELECT '11044', '613', '2400', '0', '109', '23'
            FROM DUAL
          UNION ALL
          SELECT '11045', '613', '0100', '0', '81', '25'
            FROM DUAL
          UNION ALL
          SELECT '11046', '613', '0200', '0', '56', '24'
            FROM DUAL
          UNION ALL
          SELECT '11047', '613', '0300', '0', '62', '11'
            FROM DUAL
          UNION ALL
          SELECT '11048', '613', '0400', '0', '59', '27'
            FROM DUAL
          UNION ALL
          SELECT '11049', '613', '0500', '1', '180', '87'
            FROM DUAL
          UNION ALL
          SELECT '11050', '613', '0600', '4', '410', '126'
            FROM DUAL
          UNION ALL
          SELECT '11051', '613', '0700', '6', '454', '138'
            FROM DUAL
          UNION ALL
          SELECT '11052', '613', '0800', '4', '393', '145'
            FROM DUAL
          UNION ALL
          SELECT '11053', '613', '0800', '4', '357', '131'
            FROM DUAL
          UNION ALL
          SELECT '11054', '613', '0900', '5', '347', '126'
            FROM DUAL
          UNION ALL
          SELECT '11055', '613', '1000', '3', '368', '155'
            FROM DUAL
          UNION ALL
          SELECT '11056', '613', '1100', '2', '384', '153'
            FROM DUAL
          UNION ALL
          SELECT '11057', '613', '1200', '7', '423', '166'
            FROM DUAL
          UNION ALL
          SELECT '11058', '613', '1300', '9', '489', '213'
            FROM DUAL
          UNION ALL
          SELECT '11059', '613', '1400', '5', '576', '190'
            FROM DUAL
          UNION ALL
          SELECT '11060', '613', '1500', '11', '712', '189'
            FROM DUAL
          UNION ALL
          SELECT '11061', '613', '1600', '9', '634', '211'
            FROM DUAL
          UNION ALL
          SELECT '11062', '613', '1700', '3', '501', '114'
            FROM DUAL
          UNION ALL
          SELECT '11063', '613', '1800', '2', '411', '117'
            FROM DUAL
          UNION ALL
          SELECT '11064', '613', '1900', '5', '291', '99'
            FROM DUAL
          UNION ALL
          SELECT '11065', '613', '2000', '1', '276', '71'
            FROM DUAL
          UNION ALL
          SELECT '11066', '613', '2100', '2', '214', '56'
            FROM DUAL
          UNION ALL
          SELECT '11067', '613', '2200', '3', '166', '46'
            FROM DUAL
          UNION ALL
          SELECT '11068', '613', '2300', '0', '99', '26'
            FROM DUAL
          UNION ALL
          SELECT '11069', '613', '2400', '0', '65', '19'
            FROM DUAL
          UNION ALL
          SELECT '11070', '613', '0100', '1', '57', '14'
            FROM DUAL
          UNION ALL
          SELECT '11071', '613', '0200', '0', '55', '15'
            FROM DUAL
          UNION ALL
          SELECT '11072', '613', '0300', '0', '49', '22'
            FROM DUAL
          UNION ALL
          SELECT '11073', '613', '0400', '3', '151', '113'
            FROM DUAL
          UNION ALL
          SELECT '11074', '613', '0500', '2', '324', '145'
            FROM DUAL
          UNION ALL
          SELECT '11075', '613', '0600', '5', '342', '161'
            FROM DUAL
          UNION ALL
          SELECT '11076', '613', '0700', '3', '294', '186'
            FROM DUAL
          UNION ALL
          SELECT '11077', '613', '0800', '6', '303', '171'
            FROM DUAL
          UNION ALL
          SELECT '11078', '613', '0900', '4', '278', '158'
            FROM DUAL
          UNION ALL
          SELECT '11079', '613', '1000', '2', '309', '156'
            FROM DUAL
          UNION ALL
          SELECT '11080', '613', '1100', '0', '51', '18'
            FROM DUAL
          UNION ALL
          SELECT '11081', '613', '1200', '0', '61', '25'
            FROM DUAL)
    SELECT *
      FROM sample_data;Here when i say the LAST(BIN_DATA_ID) i meant the last BIN_DATA_ID PER EACH TRAFFIC SAMPLE ID. What i was trying to do is in the bottom query i'm getting the LAST BIN_DATA_ID for each TRAFFIC SAMPLE ID and appending it to the top query.
    Thanks

  • Re Creating  a chart getting an error with a 'Union All' statement

    Hi
    I have some data to chart with the following fields;
    Product , Jul-08 , Aug-08, Sep-08 etc ...... to Jan-10.
    The PRODUCT field is text showing the numerous Product Names
    The Jul-08 & other month fields have numbers per product that is to be aggregated for that month & plotted on the line graph.
    My SQL to create the first point on the chart is as below;
    select null link, PRODUCT label, SUM(JUL-08) "FFF"
    from "SCHEMANAME"."TABLENAME"
    WHERE PRODUCT = 'FFF'
    GROUP by PRODUCT
    ORDER BY PRODUCT
    This works fine until I want add the second point of this line graph using a 'union all' join as follows;
    select null link, PRODUCT label, SUM(JUL_08) "FFF"
    from "SCHEMANAME"."TABLENAME"
    WHERE PRODUCT = 'FFF'
    UNION ALL
    select null link, PRODUCT label, SUM(AUG_08) "FFF"
    from "SCHEMANAME"."TABLENAME"
    WHERE PRODUCT = 'FFF'
    I can't work out how I can join the other months on the line graph in one series.
    The error is as follows;
    1 error has occurred
    Failed to parse SQL query:
    select null link, PRODUCT label, SUM(OCT_09) "NCDS - STD" from "BI_A_DATA"."CDW_VS_NCDS_CALLS" WHERE PRODUCT = 'NCDS - STD' UNION ALL select null link, PRODUCT label, SUM(NOV_09) "NCDS - LOCAL" from "BI_A_DATA"."CDW_VS_NCDS_CALLS" WHERE PRODUCT = 'NCDS - LOCAL'
    ORA-00937: not a single-group group function
    Certain queries can only be executed when running your application, if your query appears syntactically correct, you can save your query without validation (see options below query source).
    Can anyone assist?
    I want a continuous Line Graph that shows all the months from Jul-08 , Aug-08, Sep-08 etc ...... to Jan-10 for the same product.
    I will then add other series for the other products, Thanks

    OK, I thought each month would be separated by the different months in each selct subquery, but I see what you mean.
    I'm creating a line graph for various PRODUCTS that has a numeric value for each month, from JUL_08 ..... for a number of months.
    I want a LINE graph that shows the different totals each month for that PRODUCT.
    The error advises that there are more values in the SELECT statement than the expected and to use Use the following syntax:
    SELECT LINK, LABEL, VALUE
    FROM ...
    I then went on to use the '[ ]' brackets to separate data but this didn't fix the problem.
    I've changed the script to suit as per your 'PERIOD' addition but now have the error as per below;
    error script
    1 error has occurred
    Invalid chart query: SELECT null link, PRODUCT label, PERIOD, SUM(ABC) FROM (SELECT null link, PRODUCT, 'JUL_08' PERIOD,SUM(JUL_08)ABC FROM BI_A_DATA.APEX_TEST WHERE PRODUCT = 'ABC' GROUP BY PRODUCT UNION ALL SELECT null link, PRODUCT, 'AUG_08' PERIOD,SUM(AUG_08)ABC FROM BI_A_DATA.APEX_TEST WHERE PRODUCT = 'ABC' GROUP BY PRODUCT UNION ALL SELECT null link, PRODUCT, 'SEP_08' PERIOD,SUM(SEP_08)ABC FROM BI_A_DATA.APEX_TEST WHERE PRODUCT = 'ABC' GROUP BY PRODUCT) GROUP BY link, PRODUCT, PERIOD
    Use the following syntax:
    SELECT LINK, LABEL, VALUE
    FROM ...
    Or use the following syntax for a query returning multiple series:
    SELECT LINK, LABEL, VALUE1 [, VALUE2 [, VALUE3...]]
    FROM ...
    LINK URL
    LABEL Text that displays along a chart axis.
    VALUE1, VALUE2, VALUE3... Numeric columns that define the data values.
    Note: The series names for Column and Line charts are derived from the column aliases used in the query.
    My script amended;
    SELECT null link, PRODUCT label, PERIOD, SUM(ABC)
    FROM
    (SELECT null link, PRODUCT, 'JUL_08' PERIOD,SUM(JUL_08)ABC
    FROM BI_A_DATA.APEX_TEST
    WHERE PRODUCT = 'ABC'
    GROUP BY PRODUCT
    UNION ALL
    SELECT null link, PRODUCT, 'AUG_08' PERIOD,SUM(AUG_08)ABC
    FROM BI_A_DATA.APEX_TEST
    WHERE PRODUCT = 'ABC'
    GROUP BY PRODUCT
    UNION ALL
    SELECT null link, PRODUCT, 'SEP_08' PERIOD,SUM(SEP_08)ABC
    FROM BI_A_DATA.APEX_TEST
    WHERE PRODUCT = 'ABC'
    GROUP BY PRODUCT)
    GROUP BY link, PRODUCT, PERIOD

  • Help with d series all in one

    Need a little help with my d145 allin one changed printer heads and cartiages all i get is blue and red what to do

    Most likely you have some very old #78 cartridges. The cartrdiges have a shelf life and can lose colors (usualy yellow and cyan first) if stored for years. If these are original HP cartridges check the cartridge warranty date as shown here.
    If the cartridges are within their two year warranty call HP at 1-800-HPINVENt or contact your dealer for replacements. If the cartridges are beyond their warranty period then purchase a fresh cartridge.
    When buying new cartridges look for the "install by" date on the package. I would look for a package with at least six months remaining before the "install by" date, which would have a year of remaining warranty.
    When storing unused cartridges for an extended period keep them in a cool place and keep them upright as they would hang on a store display. This will provide maximum shelf life.
    Regards,
    Bob Headrick, MS MVP Printing/imaging
    Bob Headrick,  HP Expert
    I am not an employee of HP, I am a volunteer posting here on my own time.
    If your problem is solved please click the "Accept as Solution" button ------------V
    If my answer was helpful please click the "Thumbs Up" to say "Thank You"--V

  • Date table accross the year with a union all query

    Hi
    I'm trying to create a table in SQL that will show the Output Values acrross the year.
    I'm basically trying to change a date range of BETWEEN  '2014-01-01' AND '2014-01-30' as Jan show the Columns look like the below.
    Jan
    Feb
    March
    April
    May
    June
    July
    121
    12
    154
    78
    21
    32
    21
    SELECT count(distinct [Form Number]) as Starts
    FROM dbo.WATP
    WHERE [Cohort Desc] IN ('BBC APPs', 'ETP', 'Foundation Learning', 'WBL Scheme')
    AND [Episode Start] BETWEEN '2014-01-01' AND '2014-01-30'
    UNION ALL
    SELECT count(distinct [Form Number]) as Starts
    FROM dbo.WATP
    WHERE [Cohort Desc] IN ('BBC APPs', 'ETP', 'Foundation Learning', 'WBL Scheme')
    AND [Episode Start] BETWEEN '2014-02-01' AND '2014-02-28'
    UNION ALL
    SELECT count(distinct [Form Number]) as Starts
    FROM dbo.WATP
    WHERE [Cohort Desc] IN ('BBC APPs', 'ETP', 'Foundation Learning', 'WBL Scheme')
    AND [Episode Start] BETWEEN '2014-03-01' AND '2014-02-30'
    UNION ALL
    SELECT count(distinct [Form Number]) as Starts
    FROM dbo.WATP
    WHERE [Cohort Desc] IN ('BBC APPs', 'ETP', 'Foundation Learning', 'WBL Scheme')
    AND [Episode Start] BETWEEN '2014-04-01' AND '2014-04-30'
    Hope you can help,
    SIIOBIIB

    You can simplify that, like this:
    DECLARE @WATP TABLE ([Form Number] INT IDENTITY, [Episode Start] DATE)
    INSERT INTO @WATP ([Episode Start])
    VALUES
    ('2013-01-01'),('2013-02-01'),('2013-04-01'),('2013-04-01'),('2013-05-01'),('2013-06-01'),
    ('2013-01-01'),('2013-02-01'),('2013-04-01'),('2013-04-01'),('2013-05-01'),('2013-06-01'),
    ('2014-01-01'),('2014-02-01'),('2014-03-01'),('2014-04-01'),('2014-05-01'),('2014-06-01'),
    ('2014-01-01'),('2014-02-01'),('2014-04-01'),('2014-04-01'),('2014-05-01'),('2014-06-01'),
    ('2014-01-01'),('2014-02-01'),('2014-04-01'),('2014-04-01'),('2014-05-01'),('2014-06-01'),
    ('2014-07-01'),('2014-08-01'),('2014-09-01'),('2014-10-01'),('2014-11-01'),('2014-12-01'),
    ('2014-07-01'),('2014-08-01'),('2014-09-01'),('2014-10-01'),('2014-11-01'),('2014-12-01'),
    ('2014-04-01'),('2014-05-01'),('2014-06-01'),('2014-04-01'),('2014-05-01'),('2014-06-01'),
    ('2014-04-01'),('2014-05-01'),('2014-06-01'),('2014-10-01'),('2014-11-01'),('2014-12-01'),
    ('2014-10-01'),('2014-11-01'),('2014-12-01')
    SELECT YEAR([Episode Start]) AS year, COUNT(DISTINCT [Form Number]) AS yearTotal,
    COUNT(DISTINCT CASE WHEN MONTH([Episode Start]) = 1 THEN [Form Number] END) AS Jan,
    COUNT(DISTINCT CASE WHEN MONTH([Episode Start]) = 2 THEN [Form Number] END) AS Feb,
    COUNT(DISTINCT CASE WHEN MONTH([Episode Start]) = 3 THEN [Form Number] END) AS Mar,
    COUNT(DISTINCT CASE WHEN MONTH([Episode Start]) = 4 THEN [Form Number] END) AS Apr,
    COUNT(DISTINCT CASE WHEN MONTH([Episode Start]) = 5 THEN [Form Number] END) AS May,
    COUNT(DISTINCT CASE WHEN MONTH([Episode Start]) = 6 THEN [Form Number] END) AS Jun,
    COUNT(DISTINCT CASE WHEN MONTH([Episode Start]) = 7 THEN [Form Number] END) AS Jul,
    COUNT(DISTINCT CASE WHEN MONTH([Episode Start]) = 8 THEN [Form Number] END) AS Aug,
    COUNT(DISTINCT CASE WHEN MONTH([Episode Start]) = 9 THEN [Form Number] END) AS Sep,
    COUNT(DISTINCT CASE WHEN MONTH([Episode Start]) = 10 THEN [Form Number] END) AS Oct,
    COUNT(DISTINCT CASE WHEN MONTH([Episode Start]) = 11 THEN [Form Number] END) AS Nov,
    COUNT(DISTINCT CASE WHEN MONTH([Episode Start]) = 12 THEN [Form Number] END) AS Dec
    FROM @WATP
    GROUP BY YEAR([Episode Start])
    Please include DDL,DML and example data when posing a question, it makes it much easier for us to help you.

  • Using order by with the UNION ALL operator

    Hi,
    I have 2 queries and i'm using UNION ALL to join both of them.
    And i want to sort the final result based on a column.
    When i try to do that, its not allowing me to use the ORDER BY clause.
    Any suggestions??
    Example
    select * from xxx where job='Manager'
    order by ename
    union all
    select * from yyy where job='Engineer'
    order by ename
    Thanks in advance
    --Kumar                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    SQL> select * from test_emp where deptno = 10 order by ename
      2  union all
      3  select * from test_emp where deptno = 20 order by ename;
    union all
    ERROR at line 2:
    ORA-00933: SQL command not properly ended
    SQL> select * from test_emp where deptno = 10 --order by ename
      2  union all
      3  select * from test_emp where deptno = 20 order by ename;
    select * from test_emp where deptno = 20 order by ename
    ERROR at line 3:
    ORA-00904: "ENAME": invalid identifier
    SQL> select * from test_emp where deptno = 10 --order by ename
      2  union all
      3  select * from test_emp where deptno = 20 --order by ename;
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7698 BLAKE      MANAGER         7839 01-MAY-81       3141          1         10
          7782 CLARK      MANAGER         7839 09-JUN-81       2700                    10
          7839 KING       PRESIDENT            17-NOV-81       5512                    10
          7934 MILLER     CLERK           7782 23-JAN-82       1433                    10
          7369 SMITH      CLERK           7902 10-OCT-06        882        123         20
          7566 JONES      MANAGER         7839 10-OCT-06       3279        123         20
          7788 SCOTT      ANALYST         7566 11-OCT-06       3307        123         20
          7876 ADAMS      CLERK           7788 10-OCT-06       1212        123         20
          7902 FORD       ANALYST         7566 10-OCT-06       3307        123         20
    9 rows selected.
    SQL> select * from
      2  (select * from test_emp where deptno = 10 union all
      3  select * from test_emp where deptno = 20)
      4  order by ename;
         EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM     DEPTNO
          7876 ADAMS      CLERK           7788 10-OCT-06       1212        123         20
          7698 BLAKE      MANAGER         7839 01-MAY-81       3141          1         10
          7782 CLARK      MANAGER         7839 09-JUN-81       2700                    10
          7902 FORD       ANALYST         7566 10-OCT-06       3307        123         20
          7566 JONES      MANAGER         7839 10-OCT-06       3279        123         20
          7839 KING       PRESIDENT            17-NOV-81       5512                    10
          7934 MILLER     CLERK           7782 23-JAN-82       1433                    10
          7788 SCOTT      ANALYST         7566 11-OCT-06       3307        123         20
          7369 SMITH      CLERK           7902 10-OCT-06        882        123         20
    9 rows selected.
    SQL>

  • Please help with any or all: FTP, HTML, .Mac unpub'ing

    Dear Helpers,
    I too, build my site with iWeb and published to Mac, only to discover that the site was not "built in HTML" so I could not get help with SEO later on. (Then I read a Varrkgirl entry that seems to say that indeed once published, the site does contain HTML code. I am a novice and I don't "see" the code on my published pages..what do I know?) I was told "rebuild your site in HTML", transfer to new host via FTP.
    Sooo, I had someone look at the site, put in the HTML code, and then he gave it to me on a disk which I can load onto my computer. I have been told to publish to a new host, via FTP Cyberduck (I see there's a tutorial for that here too) and unpublish my .Mac one. Don't know what in what order to do this.
    I need help prioritzing tasks please. and to know if there is an easier way perhaps or if this should/could be avoided. Ultimately, I want a site in HTML code on my published site so that I can get some SEO help with later on. When I published to a folder, I do see code but if I simply upload this to another host would that take care of the whole issue? (i.e. dump the disk my person worked on, etc.)
    re: HTML (could I have done this myself with Text Edit? If so, then is there a way to do so at this point, since my site is published to .Mac presently?) If I want to build/change current pages in the future using iWeb I want to know how, and then how to move changes to a new host.
    re: Unpublishing my site at .Mac (when? it would seem like before I use FTP but if for some reason FTP'ing does not work then I am without my site, right?)
    re:my laundry (really out of hand since beginnng this process of totally ignoring one's life for the web..)
    Sincere thanks

    HTML:
    iWeb pages certainly ARE html code. You just don't edit the code in iWeb. If you need to add some code afterwards, try this:
    http://www.varkgirl.com/Varkgirl/Basic%20HTML%20Additions.html
    SEO:
    http://www.varkgirl.com/Varkgirl/Google%20and%20iWeb.html
    Basic iWeb FAQ:
    http://www.varkgirl.com/iWebFAQ

  • Help needed with slow union join

    Hi
    I am having a problem with a slow view that just union joins to similar tables. The view is called C_BILL_DET and joins two tables BILL_SO and BILL_CR. The problem is when querying the view it is extremely slow. For example if I do a simple select count(*) query on each of the tables and join and the results were:
    BILL_SO took 1.234 seconds to return.
    BILL_CR took 0.016 seconds to return.
    C_BILL_DET took 79.282 seconds to return.
    Can anyone offer any advise on how to speed this up?
    The view is created by:
    CREATE OR REPLACE FORCE VIEW C_BILL_DET
    ("BRANCH", "DOC_TYPE", "DOC", "DOC_LINE", "ITEM",
    "REVISION", "SHIP_QTY", "SHIP_VALUE", "COST") AS
    SELECT
    BRANCH, DOC_TYPE, DOC, DOC_LINE,ITEM, REVISION,
    SO_SHIP_QTY, SO_SHIP_VALUE, COST
    FROM
    BILL_SO
    UNION
    SELECT
    BRANCH, DOC_TYPE, DOC, DOC_LINE,ITEM, REVISION,
    CR_SHIP_QTY, CR_SHIP_VALUE, COST
    FROM
    BILL_CR;
    Thanks
    Stephen

    The union has to do extra work removing duplicates etc.
    Do the test again but also include the time it takes to run the sql that makes up the query.
    I would be surprised if it does not take the same time as using the view.

  • Help with Slow access or NAT to Inside Interface on ASA 9.1

    I am hoping someone can help me figure this out, I did this on the PIX and it worked like a charm, but I am having some difficulty translating the configuration to an ASA.
    In the PIX I performed NAT on outside traffic to a specific inside host (web server) to map to the inside interface so that return traffic would go to the same firewall the traffic came in through, The reason for this configuration was because the gateway of last resort was a different firewall and not the firewall the traffic came in through.
    Now to further give you some history, the gateway of last resort is an ASA running 9.1 (Now), prior to that it was a PIX with v8.0(4), traffic to the aforementioned web server came in through the gateway of last resort), which at the time was the PIX.
    However, for some reason after swapping the PIX for an ASA (same rules, updated NAT rules for 9.1) access to the same web server is slow. Not sure why, but it’s the case. To alleviate the slowness we experienced, and until I can figure out why this occurs on the ASA, I placed a PIX on the network that only listens for traffic for the web server in question. On this PIX I map to the inside interface so that traffic flow works and external clients can access the web server with no issues.
    So two questions, one I would like to use the configuration I have for the web server on the PIX on the ASA to see if that setup on the ASA works better, but having difficulty translating the rules to the ASA.
    Second question, has anyone experienced this type of issue (Slow access with ASA to a web server, but fast with PIX to the same web server)?
    Attached a diagram of what I am currently doing?
    Any help is appreciated.
    Thanks.
    P.S. Addresses in attached picture config are not real, but I know what they translate to.

    Hi,
    To me you it would seem that you are looking for a NAT configurations something like this
    object network SERVER-PUBLIC
    host 197.162.127.6
    object network SERVER-LOCAL
    host 10.0.1.25
    nat (outside,inside) source dynamic any interface destination static SERVER-PUBLIC SERVER-LOCAL
    It will do a NAT for both the source and destination address in a single NAT configurations. It defines that a Dynamic PAT to the "inside" interface will be done for "any" traffic entering from the "outside" WHEN the destination is the SERVER-PUBLIC IP address. Naturally the SERVER-PUBLIC will untranslated to the SERVER-LOCAL in the process as this configuration handles 2 translations.
    I dont know if this changes the situation at all but it should be the configuration format to handle the translation of external host to the internal interface IP address and only apply when this single public IP address is conserned.
    Hope this helps
    Remember to mark the reply as the correct answer if it answered your question. And/or rate helpfull answers.
    Ask more if needed
    - Jouni

  • I need help with slow macbook STILL

    still having serious speed issues.. slow shutdown slow startup and seem to be errors.. I am a novice with apple and do not know what any of this means so help would be very much appreciated.. I have tried many things suggested but still have issues
    6/04/13 3:28:57.000 PM kernel[0]: hibernate_page_list_setall time: 889 ms
    6/04/13 3:28:57.000 PM kernel[0]: pages 1371715, wire 322802, act 173391, inact 138, cleaned 0 spec 98, zf 2196, throt 0, could discard act 136535 inact 194761 purgeable 3730 spec 538064 cleaned 0
    6/04/13 3:28:57.000 PM kernel[0]: hibernate_page_list_setall found pageCount 498625
    6/04/13 3:28:57.000 PM kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    6/04/13 3:28:57.000 PM kernel[0]: IOHibernatePollerOpen(0)
    6/04/13 3:28:57.000 PM kernel[0]: encryptStart 13300
    6/04/13 3:28:57.000 PM kernel[0]: bitmap_size 0x7f5a0, previewSize 0x48e468, writing 497175 pages @ 0x520d08
    6/04/13 3:28:57.000 PM kernel[0]: hibernate_machine_init: state 2, image pages 322606, sum was ec7945d8, image1Size 16875800, conflictCount 3459, nextFree 1138
    6/04/13 3:28:57.000 PM kernel[0]: hibernate_page_list_discard time: 646 ms, discarded act 136535 inact 194761 purgeable 3730 spec 538064 cleaned 0
    6/04/13 3:28:57.000 PM kernel[0]: IOHibernatePollerOpen(), ml_get_interrupts_enabled 0
    6/04/13 3:28:57.000 PM kernel[0]: IOHibernatePollerOpen(0)
    6/04/13 3:28:57.000 PM kernel[0]: hibernate_machine_init reading
    6/04/13 3:28:57.000 PM kernel[0]: PMStats: Hibernate read took 4550 ms
    6/04/13 3:28:57.000 PM kernel[0]: hibernate_machine_init pagesDone 498429 sum2 925233cf, time: 4550 ms, comp bytes: 675549184 time: 2186 ms 294 Mb/s, crypt bytes: 306937344 time: 407 ms 717 Mb/s
    6/04/13 3:28:57.000 PM kernel[0]: Wake reason: ?
    6/04/13 3:28:57.000 PM kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    6/04/13 3:28:57.000 PM kernel[0]: Previous Sleep Cause: 5
    6/04/13 3:28:57.000 PM kernel[0]: Previous Shutdown Cause: -60
    6/04/13 3:28:57.000 PM kernel[0]: en1: 802.11d country code set to 'X1'.
    6/04/13 3:28:57.000 PM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 149 153 157 161 165
    6/04/13 3:28:57.000 PM kernel[0]: TBT W (1): 0 [x]
    6/04/13 3:28:59.361 PM mDNSResponder[39]: setsockopt - IP_ADD_MEMBERSHIP error -1 errno 49 (Can't assign requested address) group 224.0.0.251 on 192.168.0.8
    6/04/13 3:29:00.635 PM UserEventAgent[149]: Could not get event name for stream/token: com.apple.time/7: 0x3: No such process
    6/04/13 3:29:02.504 PM configd[18]: network changed: v4(en1-:192.168.0.8) DNS- Proxy- SMB-
    6/04/13 3:29:06.123 PM WindowServer[76]: Created shield window 0x3aa for display 0x003f003d
    6/04/13 3:29:06.123 PM WindowServer[76]: handle_will_sleep_auth_and_shield_windows: no action for lock state 1
    6/04/13 3:29:06.124 PM WindowServer[76]: Created shield window 0x3ab for display 0x003f003e
    6/04/13 3:29:06.125 PM WindowServer[76]: handle_will_sleep_auth_and_shield_windows: no action for lock state 1
    6/04/13 3:29:06.468 PM WindowServer[76]: handle_will_sleep_auth_and_shield_windows: no action for lock state 1
    6/04/13 3:29:07.000 PM kernel[0]: en1: 802.11d country code set to 'GB'.
    6/04/13 3:29:07.000 PM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140
    6/04/13 3:29:08.147 PM com.apple.launchd[1]: (com.apple.emond.aslmanager[1538]) Exited with code: 255
    6/04/13 3:29:10.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 2c:b0:5d:f7:70:70  MAC AUTH succeeded
    6/04/13 3:29:10.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    6/04/13 3:29:10.000 PM kernel[0]: AirPort: Link Up on en1
    6/04/13 3:29:10.000 PM kernel[0]: en1: BSSID changed to 2c:b0:5d:f7:70:70
    6/04/13 3:29:10.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    6/04/13 3:29:10.000 PM kernel[0]: AirPort: RSN handshake complete on en1
    6/04/13 3:29:14.204 PM airportd[1530]: _doAutoJoin: Already associated to “Bens Wireless”. Bailing on auto-join.
    6/04/13 3:29:14.273 PM airportd[1530]: _doAutoJoin: Already associated to “Bens Wireless”. Bailing on auto-join.
    6/04/13 3:29:14.934 PM digest-service[1548]: label: default
    6/04/13 3:29:14.935 PM digest-service[1548]:           dbname: od:/Local/Default
    6/04/13 3:29:14.935 PM digest-service[1548]:           mkey_file: /var/db/krb5kdc/m-key
    6/04/13 3:29:14.935 PM digest-service[1548]:           acl_file: /var/db/krb5kdc/kadmind.acl
    6/04/13 3:29:14.940 PM configd[18]: network changed: v4(en1+:192.168.0.8) DNS+ Proxy+ SMB+
    6/04/13 3:29:14.985 PM UserEventAgent[11]: Captive: en1: Not probing 'Bens Wireless' (protected network)
    6/04/13 3:29:14.998 PM configd[18]: network changed: v4(en1!:192.168.0.8) DNS Proxy SMB
    6/04/13 3:29:15.208 PM digest-service[1548]: digest-request: uid=0
    6/04/13 3:29:16.101 PM digest-service[1548]: digest-request: init request
    6/04/13 3:29:16.161 PM digest-service[1548]: digest-request: init return domain: MACBOOKPRO-664D server: BEN-TATASCIORES-MACBOOK-PRO
    6/04/13 3:29:16.000 PM kernel[0]: IOBluetoothUSBDFU::probe
    6/04/13 3:29:16.000 PM kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x821A FirmwareVersion - 0x0041
    6/04/13 3:29:16.000 PM kernel[0]: [BroadcomBluetoothHCIControllerUSBTransport][start] -- completed
    6/04/13 3:29:16.000 PM kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification
    6/04/13 3:29:16.000 PM kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    6/04/13 3:29:17.312 PM UserEventAgent[149]: Error loading /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS/Sera toVirtualAudioPlugIn:  dlopen(/Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/Mac OS/SeratoVirtualAudioPlugIn, 262): no suitable image found.  Did find:
              /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS /SeratoVirtualAudioPlugIn: mach-o, but wrong architecture
    6/04/13 3:29:17.313 PM UserEventAgent[149]: Cannot find function pointer New_SHP_PlugIn for factory 834FC054-C1CC-11D6-BD01-00039315CD46 in CFBundle/CFPlugIn 0x7ffe67802b90 </Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin> (bundle, not loaded)
    6/04/13 3:29:20.083 PM digest-service[1548]: digest-request: uid=0
    6/04/13 3:29:20.083 PM digest-service[1548]: digest-request: init request
    6/04/13 3:29:20.088 PM digest-service[1548]: digest-request: init return domain: MACBOOKPRO-664D server: BEN-TATASCIORES-MACBOOK-PRO
    6/04/13 3:29:20.548 PM SystemUIServer[160]: It does not make sense to draw an image when [NSGraphicsContext currentContext] is nil.  This is a programming error. Break on void _NSWarnForDrawingImageWithNoCurrentContext() to debug.  This will be logged only once.  This may break in the future.
    6/04/13 3:30:15.992 PM SubmitDiagInfo[1654]: Launched to submit Diagnostics and Usage
    6/04/13 3:30:30.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=1660[ksadmin] clearing CS_VALID
    6/04/13 3:30:39.372 PM com.apple.launchd.peruser.501[146]: ([0x0-0x177177].com.google.Chrome[1657]) Exited: Killed: 9
    6/04/13 3:30:43.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=1684[ksadmin] clearing CS_VALID
    6/04/13 3:30:47.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=1687[ksadmin] clearing CS_VALID
    6/04/13 3:31:23.196 PM com.apple.launchd.peruser.501[146]: ([0x0-0x17e17e].com.apple.ActivityMonitor[1690]) Exited: Killed: 9
    6/04/13 3:31:32.454 PM com.apple.launchd.peruser.501[146]: (com.apple.PackageKit.InstallStatus) Throttling respawn: Will start in 9 seconds
    6/04/13 3:31:32.841 PM WindowServer[76]: CGXGetConnectionProperty: Invalid connection 39171
    6/04/13 3:31:32.841 PM WindowServer[76]: CGXGetConnectionProperty: Invalid connection 39171
    6/04/13 3:31:32.842 PM com.apple.ShareKitHelper[242]: --warning: [ShareKit-XPC] Received XPC_ERROR_CONNECTION_INVALID
    6/04/13 3:31:32.842 PM WindowServer[76]: CGXGetConnectionProperty: Invalid connection 39171
    6/04/13 3:31:32.842 PM com.apple.ShareKitHelper[242]: --warning: [ShareKit-XPC] connectionWithClientInterrupted
    6/04/13 3:31:32.843 PM WindowServer[76]: CGXGetConnectionProperty: Invalid connection 39171
    6/04/13 3:31:32.843 PM WindowServer[76]: CGXGetConnectionProperty: Invalid connection 39171
    6/04/13 3:31:32.847 PM com.apple.launchd[1]: (com.apple.ShareKitHelper[242]) Exited: Killed: 9
    6/04/13 3:31:32.847 PM com.apple.launchd.peruser.501[146]: (com.apple.FolderActions.enabled[184]) Exited: Killed: 9
    6/04/13 3:31:32.848 PM WindowServer[76]: dict count after removing entry for window 0x25 is 0
    6/04/13 3:31:32.853 PM com.apple.launchd.peruser.501[146]: (com.apple.quicklook[1688]) Exited: Killed: 9
    6/04/13 3:31:32.854 PM com.apple.launchd.peruser.501[146]: ([0x0-0x17017].com.apple.AppleSpell[247]) Exited: Terminated: 15
    6/04/13 3:31:32.853 PM coreservicesd[60]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=117
    6/04/13 3:31:32.854 PM coreservicesd[60]: SendFlattenedData, got error #268435460 (ipc/send) timed out from ::mach_msg(), sending notification kLSNotifyApplicationDeath to notificationID=890
    6/04/13 3:31:32.855 PM com.apple.launchd.peruser.501[146]: (com.apple.mdworker.shared.04000000-0000-0000-0000-000000000000[1527]) Exited: Killed: 9
    6/04/13 3:32:03.000 PM bootlog[0]: BOOT_TIME 1365226323 0
    6/04/13 3:32:16.000 PM kernel[0]: PMAP: PCID enabled
    6/04/13 3:32:16.000 PM kernel[0]: Darwin Kernel Version 12.3.0: Sun Jan  6 22:37:10 PST 2013; root:xnu-2050.22.13~1/RELEASE_X86_64
    6/04/13 3:32:16.000 PM kernel[0]: vm_page_bootstrap: 3869919 free pages and 291617 wired pages
    6/04/13 3:32:16.000 PM kernel[0]: kext submap [0xffffff7f80735000 - 0xffffff8000000000], kernel text [0xffffff8000200000 - 0xffffff8000735000]
    6/04/13 3:32:16.000 PM kernel[0]: zone leak detection enabled
    6/04/13 3:32:16.000 PM kernel[0]: standard timeslicing quantum is 10000 us
    6/04/13 3:32:16.000 PM kernel[0]: standard background quantum is 2500 us
    6/04/13 3:32:16.000 PM kernel[0]: mig_table_max_displ = 74
    6/04/13 3:32:16.000 PM kernel[0]: TSC Deadline Timer supported and enabled
    6/04/13 3:32:16.000 PM kernel[0]: corecrypto kext started!
    6/04/13 3:32:16.000 PM kernel[0]: Running kernel space in FIPS MODE
    6/04/13 3:32:16.000 PM kernel[0]: Plist hmac value is    735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    6/04/13 3:32:16.000 PM kernel[0]: Computed hmac value is 735d392b68241ef173d81097b1c8ce9ba283521626d1c973ac376838c466757d
    6/04/13 3:32:16.000 PM kernel[0]: corecrypto.kext FIPS integrity POST test passed!
    6/04/13 3:32:16.000 PM kernel[0]: corecrypto.kext FIPS AES CBC POST test passed!
    6/04/13 3:32:16.000 PM kernel[0]: corecrypto.kext FIPS TDES CBC POST test passed!
    6/04/13 3:32:16.000 PM kernel[0]: corecrypto.kext FIPS AES ECB AESNI POST test passed!
    6/04/13 3:32:16.000 PM kernel[0]: corecrypto.kext FIPS AES XTS AESNI POST test passed!
    6/04/13 3:32:16.000 PM kernel[0]: corecrypto.kext FIPS SHA POST test passed!
    6/04/13 3:32:16.000 PM kernel[0]: corecrypto.kext FIPS HMAC POST test passed!
    6/04/13 3:32:16.000 PM kernel[0]: corecrypto.kext FIPS ECDSA POST test passed!
    6/04/13 3:32:16.000 PM kernel[0]: corecrypto.kext FIPS DRBG POST test passed!
    6/04/13 3:32:16.000 PM kernel[0]: corecrypto.kext FIPS POST passed!
    6/04/13 3:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=1 LocalApicId=0 Enabled
    6/04/13 3:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=2 LocalApicId=2 Enabled
    6/04/13 3:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=3 LocalApicId=4 Enabled
    6/04/13 3:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=4 LocalApicId=6 Enabled
    6/04/13 3:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=5 LocalApicId=1 Enabled
    6/04/13 3:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=6 LocalApicId=3 Enabled
    6/04/13 3:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=7 LocalApicId=5 Enabled
    6/04/13 3:32:16.000 PM kernel[0]: AppleACPICPU: ProcessorId=8 LocalApicId=7 Enabled
    6/04/13 3:32:16.000 PM kernel[0]: calling mpo_policy_init for TMSafetyNet
    6/04/13 3:32:16.000 PM kernel[0]: Security policy loaded: Safety net for Time Machine (TMSafetyNet)
    6/04/13 3:32:16.000 PM kernel[0]: calling mpo_policy_init for Sandbox
    6/04/13 3:32:16.000 PM kernel[0]: Security policy loaded: Seatbelt sandbox policy (Sandbox)
    6/04/13 3:32:16.000 PM kernel[0]: calling mpo_policy_init for Quarantine
    6/04/13 3:32:16.000 PM kernel[0]: Security policy loaded: Quarantine policy (Quarantine)
    6/04/13 3:32:16.000 PM kernel[0]: Copyright (c) 1982, 1986, 1989, 1991, 1993
    6/04/13 3:32:16.000 PM kernel[0]: The Regents of the University of California. All rights reserved.
    6/04/13 3:32:16.000 PM kernel[0]: MAC Framework successfully initialized
    6/04/13 3:32:16.000 PM kernel[0]: using 16384 buffer headers and 10240 cluster IO buffer headers
    6/04/13 3:32:16.000 PM kernel[0]: IOAPIC: Version 0x20 Vectors 64:87
    6/04/13 3:32:16.000 PM kernel[0]: ACPI: System State [S0 S3 S4 S5]
    6/04/13 3:32:16.000 PM kernel[0]: PFM64 (36 cpu) 0xf80000000, 0x80000000
    6/04/13 3:32:16.000 PM kernel[0]: AppleIntelCPUPowerManagement: Turbo Ratios 6689
    6/04/13 3:32:16.000 PM kernel[0]: AppleIntelCPUPowerManagement: (built 00:59:42 Aug 25 2012) initialization complete
    6/04/13 3:32:16.000 PM kernel[0]: [ PCI configuration begin ]
    6/04/13 3:32:16.000 PM kernel[0]: console relocated to 0xfd0010000
    6/04/13 3:32:16.000 PM kernel[0]: PCI configuration changed (bridge=16 device=5 cardbus=0)
    6/04/13 3:32:16.000 PM kernel[0]: [ PCI configuration end, bridges 12 devices 18 ]
    6/04/13 3:32:16.000 PM kernel[0]: mbinit: done [128 MB total pool size, (85/42) split]
    6/04/13 3:32:16.000 PM kernel[0]: Pthread support ABORTS when sync kernel primitives misused
    6/04/13 3:32:16.000 PM kernel[0]: rooting via boot-uuid from /chosen: 2A472E82-CE11-3B34-80B2-5644FCAAE941
    6/04/13 3:32:16.000 PM kernel[0]: Waiting on <dict ID="0"><key>IOProviderClass</key><string ID="1">IOResources</string><key>IOResourceMatch</key><string ID="2">boot-uuid-media</string></dict>
    6/04/13 3:32:16.000 PM kernel[0]: com.apple.AppleFSCompressionTypeZlib kmod start
    6/04/13 3:32:16.000 PM kernel[0]: com.apple.AppleFSCompressionTypeDataless kmod start
    6/04/13 3:32:16.000 PM kernel[0]: com.apple.AppleFSCompressionTypeZlib load succeeded
    6/04/13 3:32:16.000 PM kernel[0]: com.apple.AppleFSCompressionTypeDataless load succeeded
    6/04/13 3:32:16.000 PM kernel[0]: AppleIntelCPUPowerManagementClient: ready
    6/04/13 3:32:16.000 PM kernel[0]: FireWire (OHCI) Lucent ID 5901 built-in now active, GUID 70cd60fffec8cf72; max speed s800.
    6/04/13 3:32:16.000 PM kernel[0]: Got boot device = IOService:/AppleACPIPlatformExpert/PCI0@0/AppleACPIPCI/SATA@1F,2/AppleIntelPchS eriesAHCI/PRT0@0/IOAHCIDevice@0/AppleAHCIDiskDriver/IOAHCIBlockStorageDevice/IOB lockStorageDriver/ST9500325ASG Media/IOGUIDPartitionScheme/Customer@2
    6/04/13 3:32:16.000 PM kernel[0]: BSD root: disk0s2, major 1, minor 2
    6/04/13 3:32:16.000 PM kernel[0]: BTCOEXIST off
    6/04/13 3:32:16.000 PM kernel[0]: BRCM tunables:
    6/04/13 3:32:16.000 PM kernel[0]: pullmode[1] txringsize[  256] txsendqsize[1024] reapmin[   32] reapcount[  128]
    6/04/13 3:32:16.000 PM kernel[0]: Kernel is LP64
    6/04/13 3:32:16.000 PM kernel[0]: AppleUSBMultitouchDriver::checkStatus - received Status Packet, Payload 2: device was reinitialized
    6/04/13 3:32:05.232 PM com.apple.launchd[1]: *** launchd[1] has started up. ***
    6/04/13 3:32:05.232 PM com.apple.launchd[1]: *** Shutdown logging is enabled. ***
    6/04/13 3:32:16.398 PM com.apple.launchd[1]: (com.apple.automountd) Unknown key for boolean: NSSupportsSuddenTermination
    6/04/13 3:32:17.000 PM kernel[0]: BCM5701Enet: Ethernet address c8:2a:14:10:66:4d
    6/04/13 3:32:17.000 PM kernel[0]: AirPort_Brcm4331: Ethernet address e0:f8:47:2c:d3:1e
    6/04/13 3:32:17.000 PM kernel[0]: IO80211Controller::dataLinkLayerAttachComplete():  adding AppleEFINVRAM notification
    6/04/13 3:32:17.000 PM kernel[0]: IO80211Interface::efiNVRAMPublished(): 
    6/04/13 3:32:23.374 PM rpc.statd[29]: Failed to contact rpc.statd at host 192.168.0.4
    6/04/13 3:32:25.000 PM kernel[0]: fsevents: watcher com.freemacsoft. (pid: 59) - Using /dev/fsevents directly is unsupported.  Migrate to FSEventsFramework
    6/04/13 3:32:25.096 PM hidd[46]: Posting 'com.apple.iokit.hid.displayStatus' notifyState=1
    6/04/13 3:32:27.000 PM kernel[0]: Waiting for DSMOS...
    6/04/13 3:32:30.000 PM kernel[0]: macx_swapon SUCCESS
    6/04/13 3:32:32.078 PM coreservicesd[60]: FindBestLSSession(), no match for inSessionID 0xfffffffffffffffc auditTokenInfo( uid=0 euid=0 auSessionID=100000 create=false
    6/04/13 3:32:32.095 PM mDNSResponder[39]: mDNSResponder mDNSResponder-379.37 (Dec 16 2012 19:43:09) starting OSXVers 12
    6/04/13 3:32:32.100 PM airportd[65]: _processDLILEvent: en1 attached (down)
    6/04/13 3:32:32.117 PM appleeventsd[52]: main: Starting up
    6/04/13 3:32:32.139 PM com.apple.usbmuxd[27]: usbmuxd-296.4 on Dec 21 2012 at 16:11:14, running 64 bit
    6/04/13 3:32:32.000 PM kernel[0]: createVirtIf(): ifRole = 1
    6/04/13 3:32:32.000 PM kernel[0]: in func createVirtualInterface ifRole = 1
    6/04/13 3:32:32.000 PM kernel[0]: AirPort_Brcm4331_P2PInterface::init name <p2p0> role 1 this 0xffffff804dbe5000
    6/04/13 3:32:32.000 PM kernel[0]: AirPort_Brcm4331_P2PInterface::init() <p2p> role 1
    6/04/13 3:32:32.000 PM kernel[0]: Created virtif 0xffffff804dbe5000 p2p0
    6/04/13 3:32:32.194 PM hidd[46]: void __IOHIDLoadBundles(): Loaded 0 HID plugins
    6/04/13 3:32:32.000 PM kernel[0]: AGC: 3.3.0, HW version=1.9.23, flags:0, features:20600
    6/04/13 3:32:32.000 PM kernel[0]: Previous Shutdown Cause: -60
    6/04/13 3:32:32.000 PM kernel[0]: [IOBluetoothHCIController][start] -- completed
    6/04/13 3:32:32.000 PM kernel[0]: IOBluetoothUSBDFU::probe
    6/04/13 3:32:32.000 PM kernel[0]: IOBluetoothUSBDFU::probe ProductID - 0x821A FirmwareVersion - 0x0041
    6/04/13 3:32:32.000 PM kernel[0]: [BroadcomBluetoothHCIControllerUSBTransport][start] -- completed
    6/04/13 3:32:32.000 PM kernel[0]: [IOBluetoothHCIController][staticBluetoothHCIControllerTransportShowsUp] -- Received Bluetooth Controller register service notification
    6/04/13 3:32:33.000 PM kernel[0]: [IOBluetoothHCIController::setConfigState] calling registerService
    6/04/13 3:32:33.000 PM kernel[0]: AMDCaicosGraphicsAccelerator: ** Device in slot: SLOT--1 **
    6/04/13 3:32:33.507 PM com.apple.SecurityServer[14]: Session 100000 created
    6/04/13 3:32:33.733 PM mds[38]: (Normal) FMW: FMW 0 0
    6/04/13 3:32:33.897 PM configd[18]: setting hostname to "Ben-Tatasciores-MacBook-Pro.local"
    6/04/13 3:32:33.000 PM kernel[0]: DSMOS has arrived
    6/04/13 3:32:33.000 PM kernel[0]: [AGPM Controller] build GPUDict by Vendor1002Device6760
    6/04/13 3:32:33.000 PM kernel[0]: AirPort: Link Down on en1. Reason 1 (Unspecified).
    6/04/13 3:32:33.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    6/04/13 3:32:33.902 PM configd[18]: network changed.
    6/04/13 3:32:34.171 PM WindowServer[76]: Server is starting up
    6/04/13 3:32:34.174 PM WindowServer[76]: Session 256 retained (2 references)
    6/04/13 3:32:34.174 PM WindowServer[76]: Session 256 released (1 references)
    6/04/13 3:32:34.180 PM WindowServer[76]: Session 256 retained (2 references)
    6/04/13 3:32:34.181 PM WindowServer[76]: init_page_flip: page flip mode is on
    6/04/13 3:32:35.379 PM WindowServer[76]: mux_initialize: Mode is dynamic
    6/04/13 3:32:35.394 PM WindowServer[76]: GLCompositor enabled for tile size [256 x 256]
    6/04/13 3:32:35.394 PM WindowServer[76]: CGXGLInitMipMap: mip map mode is on
    6/04/13 3:32:35.425 PM WindowServer[76]: WSMachineUsesNewStyleMirroring: false
    6/04/13 3:32:35.426 PM WindowServer[76]: Display 0x042728c0: GL mask 0x9; bounds (0, 0)[1440 x 900], 39 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ca3, S/N 0, Unit 0, Rotation 0
    UUID 0x0000061000009ca300000000042728c0
    6/04/13 3:32:35.426 PM WindowServer[76]: Display 0x003f003e: GL mask 0x4; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003e
    6/04/13 3:32:35.426 PM WindowServer[76]: Display 0x003f003d: GL mask 0x2; bounds (0, 0)[0 x 0], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    6/04/13 3:32:35.429 PM WindowServer[76]: Created shield window 0x5 for display 0x042728c0
    6/04/13 3:32:35.430 PM WindowServer[76]: Created shield window 0x6 for display 0x003f003e
    6/04/13 3:32:35.430 PM WindowServer[76]: Created shield window 0x7 for display 0x003f003d
    6/04/13 3:32:35.431 PM WindowServer[76]: Display 0x042728c0: GL mask 0x9; bounds (0, 0)[1440 x 900], 39 modes available
    Main, Active, on-line, enabled, built-in, boot, Vendor 610, Model 9ca3, S/N 0, Unit 0, Rotation 0
    UUID 0x0000061000009ca300000000042728c0
    6/04/13 3:32:35.431 PM WindowServer[76]: Display 0x003f003e: GL mask 0x4; bounds (2464, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 2, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003e
    6/04/13 3:32:35.431 PM WindowServer[76]: Display 0x003f003d: GL mask 0x2; bounds (2465, 0)[1 x 1], 1 modes available
    off-line, enabled, Vendor ffffffff, Model ffffffff, S/N ffffffff, Unit 1, Rotation 0
    UUID 0xffffffffffffffffffffffff003f003d
    6/04/13 3:32:35.431 PM WindowServer[76]: CGXPerformInitialDisplayConfiguration
    6/04/13 3:32:35.431 PM WindowServer[76]:   Display 0x042728c0: MappedDisplay Unit 0; Alias(0, 0x9); Vendor 0x610 Model 0x9ca3 S/N 0 Dimensions 13.03 x 8.15; online enabled built-in, Bounds (0,0)[1440 x 900], Rotation 0, Resolution 1
    6/04/13 3:32:35.431 PM WindowServer[76]:   Display 0x003f003e: MappedDisplay Unit 2; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2464,0)[1 x 1], Rotation 0, Resolution 1
    6/04/13 3:32:35.432 PM WindowServer[76]:   Display 0x003f003d: MappedDisplay Unit 1; Vendor 0xffffffff Model 0xffffffff S/N -1 Dimensions 0.00 x 0.00; offline enabled, Bounds (2465,0)[1 x 1], Rotation 0, Resolution 1
    6/04/13 3:32:35.432 PM WindowServer[76]: CGXMuxBoot: Boot normal
    6/04/13 3:32:35.491 PM WindowServer[76]: GLCompositor: GL renderer id 0x01021b07, GL mask 0x00000007, accelerator 0x000045c3, unit 0, caps QEX|QGL|MIPMAP, vram 256 MB
    6/04/13 3:32:35.491 PM WindowServer[76]: GLCompositor: GL renderer id 0x01021b07, GL mask 0x00000007, texture units 8, texture max 16384, viewport max {16384, 16384}, extensions FPRG|NPOT|GLSL|FLOAT
    6/04/13 3:32:35.491 PM WindowServer[76]: GLCompositor: GL renderer id 0x01024301, GL mask 0x00000008, accelerator 0x00004a2b, unit 3, caps QEX|QGL|MIPMAP, vram 451 MB
    6/04/13 3:32:35.491 PM WindowServer[76]: GLCompositor: GL renderer id 0x01024301, GL mask 0x00000008, texture units 8, texture max 8192, viewport max {8192, 8192}, extensions FPRG|NPOT|GLSL|FLOAT
    6/04/13 3:32:35.508 PM WindowServer[76]: Unable to open IOHIDSystem (e00002bd)
    6/04/13 3:32:35.000 PM kernel[0]: virtual bool IOHIDEventSystemUserClient::initWithTask(task_t, void *, UInt32): Client task not privileged to open IOHIDSystem for mapping memory (e00002c1)
    6/04/13 3:32:37.430 PM WindowServer[76]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    6/04/13 3:32:37.441 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 3:32:37.474 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 3:32:37.491 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 3:32:37.491 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 3:32:37.491 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 3:32:39.002 PM com.apple.SecurityServer[14]: Entering service
    6/04/13 3:32:39.031 PM systemkeychain[68]: done file: /var/run/systemkeychaincheck.done
    6/04/13 3:32:39.042 PM configd[18]: network changed: DNS*
    6/04/13 3:32:39.043 PM mDNSResponder[39]: D2D_IPC: Loaded
    6/04/13 3:32:39.043 PM mDNSResponder[39]: D2DInitialize succeeded
    6/04/13 3:32:39.068 PM awacsd[56]: Starting awacsd connectivity-78.2 (Dec 16 2012 19:43:29)
    6/04/13 3:32:39.072 PM awacsd[56]: InnerStore CopyAllZones: no info in Dynamic Store
    6/04/13 3:32:39.095 PM loginwindow[42]: Login Window Application Started
    6/04/13 3:32:39.117 PM loginwindow[42]: **DMPROXY** Found `/System/Library/CoreServices/DMProxy'.
    6/04/13 3:32:39.133 PM UserEventAgent[11]: Captive: [HandleNetworkInformationChanged:2435] nwi_state_copy returned NULL
    6/04/13 3:32:40.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 2c:b0:5d:f7:70:70  MAC AUTH succeeded
    6/04/13 3:32:40.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    6/04/13 3:32:40.000 PM kernel[0]: AirPort: Link Up on en1
    6/04/13 3:32:40.000 PM kernel[0]: en1: BSSID changed to 2c:b0:5d:f7:70:70
    6/04/13 3:32:40.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    6/04/13 3:32:40.515 PM digest-service[105]: label: default
    6/04/13 3:32:40.515 PM digest-service[105]:           dbname: od:/Local/Default
    6/04/13 3:32:40.515 PM digest-service[105]:           mkey_file: /var/db/krb5kdc/m-key
    6/04/13 3:32:40.515 PM digest-service[105]:           acl_file: /var/db/krb5kdc/kadmind.acl
    6/04/13 3:32:40.517 PM digest-service[105]: digest-request: uid=0
    6/04/13 3:32:40.536 PM rpcsvchost[115]: sandbox_init: com.apple.msrpc.netlogon.sb succeeded
    6/04/13 3:32:40.540 PM digest-service[105]: digest-request: init request
    6/04/13 3:32:40.543 PM digest-service[105]: digest-request: init return domain: BUILTIN server: BEN-TATASCIORES-MACBOOK-PRO
    6/04/13 3:32:40.547 PM sudo[112]:     root : TTY=unknown ; PWD=/ ; USER=root ; COMMAND=/Library/StartupItems/HWNetMgr/HWNetCfg
    6/04/13 3:32:41.000 PM kernel[0]: AirPort: RSN handshake complete on en1
    6/04/13 3:32:41.837 PM netbiosd[75]: Unable to start NetBIOS name service:
    6/04/13 3:32:42.041 PM locationd[43]: NOTICE,Location icon should now be in state 0
    6/04/13 3:32:47.335 PM configd[18]: network changed: v4(en1+:192.168.0.8) DNS+ Proxy+ SMB+
    6/04/13 3:32:47.351 PM UserEventAgent[11]: Captive: en1: Not probing 'Bens Wireless' (protected network)
    6/04/13 3:32:47.355 PM configd[18]: network changed: v4(en1!:192.168.0.8) DNS Proxy SMB
    6/04/13 3:32:48.640 PM airportd[65]: _doAutoJoin: Already associated to “Bens Wireless”. Bailing on auto-join.
    6/04/13 3:32:48.656 PM airportd[65]: _doAutoJoin: Already associated to “Bens Wireless”. Bailing on auto-join.
    6/04/13 3:32:31.406 PM ntpd[102]: proto: precision = 1.000 usec
    6/04/13 3:32:34.476 PM SystemStarter[103]: StartOuc (111) did not complete successfully
    6/04/13 3:32:34.477 PM SystemStarter[103]: The following StartupItems failed to start properly:
    6/04/13 3:32:34.477 PM SystemStarter[103]: /Library/StartupItems/StartOuc
    6/04/13 3:32:34.477 PM SystemStarter[103]:  - execution of Startup script failed
    6/04/13 3:32:34.949 PM WindowServer[76]: Created shield window 0x8 for display 0x042728c0
    6/04/13 3:32:34.949 PM WindowServer[76]: Display 0x042728c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
    6/04/13 3:32:34.968 PM launchctl[129]: com.apple.findmymacmessenger: Already loaded
    6/04/13 3:32:34.986 PM com.apple.SecurityServer[14]: Session 100004 created
    6/04/13 3:32:35.035 PM airportd[65]: _doAutoJoin: Already associated to “Bens Wireless”. Bailing on auto-join.
    6/04/13 3:32:35.045 PM hidd[46]: CGSShutdownServerConnections: Detaching application from window server
    6/04/13 3:32:35.045 PM hidd[46]: CGSDisplayServerShutdown: Detaching display subsystem from window server
    6/04/13 3:32:35.069 PM loginwindow[42]: Login Window Started Security Agent
    6/04/13 3:32:35.076 PM locationd[136]: NOTICE,Location icon should now be in state 0
    6/04/13 3:32:35.086 PM UserEventAgent[130]: cannot find useragent 1102
    6/04/13 3:32:35.126 PM WindowServer[76]: Display 0x042728c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
    6/04/13 3:32:35.146 PM WindowServer[76]: Display 0x042728c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
    6/04/13 3:32:35.152 PM SecurityAgent[138]: This is the first run
    6/04/13 3:32:35.152 PM SecurityAgent[138]: MacBuddy was run = 0
    6/04/13 3:32:35.181 PM SecurityAgent[138]: User info context values set for djinferno01
    6/04/13 3:32:35.464 PM loginwindow[42]: Login Window - Returned from Security Agent
    6/04/13 3:32:35.467 PM loginwindow[42]: ERROR | ScreensharingLoginNotification | Failed sending message to screen sharing GetScreensharingPort, err: 1102
    6/04/13 3:32:35.485 PM loginwindow[42]: USER_PROCESS: 42 console
    6/04/13 3:32:35.511 PM airportd[65]: _doAutoJoin: Already associated to “Bens Wireless”. Bailing on auto-join.
    6/04/13 3:32:35.684 PM com.apple.launchd.peruser.501[148]: (com.apple.gamed) Ignored this key: UserName
    6/04/13 3:32:35.684 PM com.apple.launchd.peruser.501[148]: (com.apple.gamed) Ignored this key: GroupName
    6/04/13 3:32:35.685 PM com.apple.launchd.peruser.501[148]: (com.apple.ReportCrash) Falling back to default Mach exception handler. Could not find: com.apple.ReportCrash.Self
    6/04/13 3:32:35.690 PM loginwindow[42]: Connection with distnoted server was invalidated
    6/04/13 3:32:35.696 PM distnoted[152]: # distnote server agent  absolute time: 50.940676450   civil time: Sat Apr  6 15:32:35 2013   pid: 152 uid: 501  root: no
    6/04/13 3:32:35.844 PM WindowServer[76]: **DMPROXY** (2) Found `/System/Library/CoreServices/DMProxy'.
    6/04/13 3:32:36.326 PM awacsd[56]: Exiting
    6/04/13 3:32:36.487 PM netbiosd[75]: starting time 386919156.486931 is before last initialize time 386919167.336407
    6/04/13 3:32:36.487 PM netbiosd[75]: starting time 386919156.487135 is before last initialize time 386919167.336407
    6/04/13 3:32:36.776 PM blued[55]: kBTXPCUpdateUserPreferences gConsoleUserUID = 501
    6/04/13 3:32:37.157 PM com.apple.SecurityServer[14]: Session 100006 created
    6/04/13 3:32:37.183 PM SystemUIServer[164]: In 'CFPasteboardCopyDataReturn __CFPasteboardCopyData(CFPasteboardRef, CFIndex, CFIndex, CFStringRef, Boolean)', file /SourceCache/CF/CF-744.18/AppServices.subproj/CFPasteboard.c, line 2373, during unlock, spin lock 0x109b7f018 has value 0x0, which is not locked.  The memory has been smashed or the lock is being unlocked when not locked.
    6/04/13 3:32:37.201 PM WindowServer[76]: Display 0x042728c0: MappedDisplay Unit 0; ColorProfile { 2, "Color LCD"}; TransferTable (256, 3)
    6/04/13 3:32:37.233 PM com.apple.launchd.peruser.501[148]: (com.apple.afpstat-qfa[193]) Job failed to exec(3). Setting up event to tell us when to try again: 2: No such file or directory
    6/04/13 3:32:37.233 PM com.apple.launchd.peruser.501[148]: (com.apple.afpstat-qfa[193]) Job failed to exec(3) for weird reason: 2
    6/04/13 3:32:37.238 PM NetworkBrowserAgent[178]: Starting NetworkBrowserAgent
    6/04/13 3:32:37.536 PM loginwindow[42]: Error loading /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS/Sera toVirtualAudioPlugIn:  dlopen(/Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/Mac OS/SeratoVirtualAudioPlugIn, 262): no suitable image found.  Did find:
              /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS /SeratoVirtualAudioPlugIn: mach-o, but wrong architecture
    6/04/13 3:32:37.537 PM loginwindow[42]: Cannot find function pointer New_SHP_PlugIn for factory 834FC054-C1CC-11D6-BD01-00039315CD46 in CFBundle/CFPlugIn 0x7fe46b038340 </Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin> (bundle, not loaded)
    6/04/13 3:32:39.788 PM SystemUIServer[164]: Error loading /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS/Sera toVirtualAudioPlugIn:  dlopen(/Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/Mac OS/SeratoVirtualAudioPlugIn, 262): no suitable image found.  Did find:
              /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS /SeratoVirtualAudioPlugIn: mach-o, but wrong architecture
    6/04/13 3:32:39.789 PM SystemUIServer[164]: Cannot find function pointer New_SHP_PlugIn for factory 834FC054-C1CC-11D6-BD01-00039315CD46 in CFBundle/CFPlugIn 0x7fdaa322bc30 </Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin> (bundle, not loaded)
    6/04/13 3:32:40.337 PM SystemUIServer[164]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    6/04/13 3:32:40.337 PM SystemUIServer[164]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    6/04/13 3:32:55.648 PM com.apple.launchd[1]: (com.apple.coreservices.appleid.authentication[134]) Exit timeout elapsed (20 seconds). Killing
    6/04/13 3:33:35.922 PM SubmitDiagInfo[277]: Launched to submit Diagnostics and Usage
    6/04/13 3:33:47.995 PM SubmitDiagInfo[277]: SubmitDiagInfo successfully uploaded 96 diagnostic messages.
    6/04/13 3:33:56.863 PM com.apple.SecurityServer[14]: Session 100005 created
    6/04/13 3:34:37.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=292[ksadmin] clearing CS_VALID
    6/04/13 3:34:37.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=294[ksadmin] clearing CS_VALID
    6/04/13 3:34:56.000 PM kernel[0]: Limiting closed port RST response from 314 to 250 packets per second
    6/04/13 3:34:58.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 2c:b0:5d:f7:70:70  MAC AUTH succeeded
    6/04/13 3:34:58.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    6/04/13 3:34:58.000 PM kernel[0]: wl0: Roamed or switched channel, reason #8, bssid 2c:b0:5d:f7:70:70
    6/04/13 3:34:58.000 PM kernel[0]: en1: BSSID changed to 2c:b0:5d:f7:70:70
    6/04/13 3:34:58.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    6/04/13 3:34:58.000 PM kernel[0]: AirPort: RSN handshake complete on en1
    6/04/13 3:35:58.303 PM DiskImages UI Agent[308]: *** -[NSMachPort handlePortMessage:]: dropping incoming DO message because the connection is invalid
    6/04/13 3:36:05.120 PM librariand[324]: MMe quota status changed: under quota
    6/04/13 3:36:05.000 PM kernel[0]: Sandbox: sandboxd(326) deny mach-lookup com.apple.coresymbolicationd
    6/04/13 3:36:08.600 PM sandboxd[326]: ([322]) TextEdit(322) deny sysctl-write
    6/04/13 3:36:08.616 PM sandboxd[326]: ([322]) TextEdit(322) deny sysctl-write
    6/04/13 3:36:38.141 PM CoreServicesUIAgent[338]: Error: qtn_file_apply_to_path error: Read-only file system
    6/04/13 3:36:38.145 PM CoreServicesUIAgent[338]: Error: qtn_file_apply_to_path error: Read-only file system
    6/04/13 3:36:38.148 PM CoreServicesUIAgent[338]: Error: qtn_file_apply_to_path error: Read-only file system
    6/04/13 3:36:38.151 PM CoreServicesUIAgent[338]: Error: qtn_file_apply_to_path error: Read-only file system
    6/04/13 3:36:38.155 PM CoreServicesUIAgent[338]: Error: qtn_file_apply_to_path error: Read-only file system
    6/04/13 3:36:38.158 PM CoreServicesUIAgent[338]: Error: qtn_file_apply_to_path error: Read-only file system
    6/04/13 3:36:38.852 PM Installer[336]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    6/04/13 3:36:41.170 PM Installer[336]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    6/04/13 3:36:45.323 PM Installer[336]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    6/04/13 3:36:49.299 PM Installer[336]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    6/04/13 3:36:49.300 PM Installer[336]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    6/04/13 3:36:49.434 PM Installer[336]: *** WARNING: -[NSImage compositeToPoint:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    6/04/13 3:36:49.435 PM Installer[336]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:fraction:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    6/04/13 3:36:49.514 PM Installer[336]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    6/04/13 3:37:06.831 PM coreservicesd[60]: Application App:"Installer" [ 0x0/0x2a02a]  @ 0x0x7f8894813640 tried to be brought forward, but isn't in fPermittedFrontASNs ( ( ASN:0x0-0x2c02c:) ), so denying.
    6/04/13 3:37:06.832 PM WindowServer[76]: [cps/setfront] Failed setting the front application to Installer, psn 0x0-0x2a02a, securitySessionID=0x186a4, err=-13066
    6/04/13 3:37:43.699 PM rpc.statd[29]: Failed to contact rpc.statd at host 192.168.0.4
    6/04/13 3:37:54.392 PM Installer[336]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    6/04/13 3:37:55.003 PM mds[38]: Unable to talk to lsboxd
    6/04/13 3:38:12.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=396[ksadmin] clearing CS_VALID
    6/04/13 3:38:12.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=398[ksadmin] clearing CS_VALID
    6/04/13 3:45:09.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=434[ksadmin] clearing CS_VALID
    6/04/13 3:45:10.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=436[ksadmin] clearing CS_VALID
    6/04/13 3:50:12.206 PM VDCAssistant[452]: AVF encoder error: fail to create accelerator instance
    6/04/13 3:55:43.789 PM rpc.statd[29]: Failed to contact rpc.statd at host 192.168.0.4
    6/04/13 3:56:43.634 PM com.apple.ShareKitHelper[450]: --warning: [ShareKit-XPC] Received XPC_ERROR_CONNECTION_INVALID
    6/04/13 3:56:43.635 PM com.apple.ShareKitHelper[450]: --warning: [ShareKit-XPC] connectionWithClientInterrupted
    6/04/13 3:56:43.635 PM com.apple.ShareKitHelper[450]: --warning: [ShareKit] Cancel UI for running services with Client PID: 460
    6/04/13 3:58:09.180 PM xpcd[201]: (null): have symlinks: (
    6/04/13 3:58:10.658 PM librariand[475]: MMe quota status changed: under quota
    6/04/13 3:58:12.716 PM com.apple.SecurityServer[14]: Session 100010 created
    6/04/13 3:58:21.384 PM CVMServer[77]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    6/04/13 3:58:21.414 PM CVMServer[77]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    6/04/13 3:58:23.757 PM com.apple.security.pboxd[485]: Bug: 12D78: liblaunch.dylib + 23849 [2F71CAF8-6524-329E-AC56-C506658B4C0C]: 0x25
    6/04/13 3:58:33.710 PM com.apple.security.pboxd[485]: CGSGetWindowTags: Invalid window 0xd9
    6/04/13 3:58:33.710 PM com.apple.security.pboxd[485]: kCGErrorFailure: CGSSetHideOnDeact: error getting window tags
    6/04/13 3:58:33.740 PM com.apple.security.pboxd[485]: CGSCopyWindowColorSpace: Invalid window 0xd9
    6/04/13 3:58:52.967 PM com.apple.security.pboxd[485]: CGSReleaseWindow: Invalid window 217
    6/04/13 3:58:52.967 PM com.apple.security.pboxd[485]: _NXTermWindow: error releasing window (1000)
    6/04/13 3:59:41.822 PM WindowServer[76]: CGXSetWindowListTags: Modification of kCGSPermittedBeforeLoginTagBit (30) on a window 0xea requiring rights kCGSWindowRightOwner by caller TextEdit
    6/04/13 4:00:22.807 PM com.apple.security.pboxd[485]: CGSGetWindowTags: Invalid window 0xf8
    6/04/13 4:00:22.807 PM com.apple.security.pboxd[485]: kCGErrorFailure: CGSSetHideOnDeact: error getting window tags
    6/04/13 4:00:22.867 PM com.apple.security.pboxd[485]: CGSCopyWindowColorSpace: Invalid window 0xf8
    6/04/13 4:01:01.846 PM com.apple.security.pboxd[485]: CGSReleaseWindow: Invalid window 248
    6/04/13 4:01:01.847 PM com.apple.security.pboxd[485]: _NXTermWindow: error releasing window (1000)
    6/04/13 4:01:17.493 PM com.apple.security.pboxd[485]: CGSGetWindowTags: Invalid window 0x104
    6/04/13 4:01:17.493 PM com.apple.security.pboxd[485]: kCGErrorFailure: CGSSetHideOnDeact: error getting window tags
    6/04/13 4:01:22.146 PM com.apple.security.pboxd[485]: CGSReleaseWindow: Invalid window 260
    6/04/13 4:01:22.147 PM com.apple.security.pboxd[485]: _NXTermWindow: error releasing window (1000)
    6/04/13 4:01:57.060 PM Google Chrome[432]: CoreAnimation: warning, deleted thread with uncommitted CATransaction; set CA_DEBUG_TRANSACTIONS=1 in environment to log backtraces.
    6/04/13 4:02:53.532 PM com.apple.ShareKitHelper[450]: --warning: [ShareKit-XPC] Received XPC_ERROR_CONNECTION_INVALID
    6/04/13 4:02:53.533 PM com.apple.ShareKitHelper[450]: --warning: [ShareKit-XPC] connectionWithClientInterrupted
    6/04/13 4:02:53.533 PM com.apple.ShareKitHelper[450]: --warning: [ShareKit] Cancel UI for running services with Client PID: 428
    6/04/13 4:03:35.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=526[ksadmin] clearing CS_VALID
    6/04/13 4:03:35.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=528[ksadmin] clearing CS_VALID
    6/04/13 4:07:43.480 PM WindowServer[76]: Created shield window 0x13b for display 0x042728c0
    6/04/13 4:07:43.480 PM WindowServer[76]: device_generate_desktop_screenshot: authw 0x0(0), shield 0x0(0)
    6/04/13 4:07:43.496 PM WindowServer[76]: device_generate_lock_screen_screenshot: authw 0x0(0), shield 0x0(0)
    6/04/13 4:08:43.455 PM WindowServer[76]: Created shield window 0x13c for display 0x003f003d
    6/04/13 4:08:43.456 PM WindowServer[76]: handle_will_sleep_auth_and_shield_windows: no lock state data
    6/04/13 4:08:43.456 PM WindowServer[76]: Created shield window 0x13d for display 0x003f003e
    6/04/13 4:08:43.457 PM WindowServer[76]: handle_will_sleep_auth_and_shield_windows: no lock state data
    6/04/13 4:08:43.459 PM WindowServer[76]: handle_will_sleep_auth_and_shield_windows: no lock state data
    6/04/13 4:08:45.217 PM Microsoft Outlook[546]: objc[546]: Class OnClickLinkAction is implemented in both /Applications/Microsoft Office 2011/Office/OutlookLegacy.framework/Versions/14/OutlookLegacy and /Applications/Microsoft Office 2011/Microsoft Outlook.app/Contents/MacOS/Microsoft Outlook. One of the two will be used. Which one is undefined.
    6/04/13 4:08:50.918 PM WindowServer[76]: CGXSetWindowBackgroundBlurRadius: Invalid window 0xffffffff
    6/04/13 4:10:19.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=557[ksadmin] clearing CS_VALID
    6/04/13 4:10:19.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=559[ksadmin] clearing CS_VALID
    6/04/13 4:10:51.860 PM WindowServer[76]: Created shield window 0x164 for display 0x042728c0
    6/04/13 4:10:51.860 PM WindowServer[76]: device_generate_desktop_screenshot: authw 0x0(0), shield 0x0(0)
    6/04/13 4:10:51.873 PM WindowServer[76]: device_generate_lock_screen_screenshot: authw 0x0(0), shield 0x0(0)
    6/04/13 4:10:53.000 PM kernel[0]: hibernate image path: /var/vm/sleepimage
    6/04/13 4:10:53.000 PM kernel[0]: AirPort_Brcm43xx::powerChange: System Sleep
    6/04/13 4:10:53.000 PM kernel[0]: hibernate_alloc_pages act 238901, inact 79691, anon 830, throt 0, spec 195176, wire 311000, wireinit 291617
    6/04/13 4:10:53.000 PM kernel[0]: hibernate_setup(0) took 0 ms
    6/04/13 4:10:53.000 PM kernel[0]: sizeof(IOHibernateImageHeader) == 512
    6/04/13 4:10:53.000 PM kernel[0]: kern_open_file_for_direct_io(0) took 29 ms
    6/04/13 4:10:53.000 PM kernel[0]: Opened file /var/vm/sleepimage, size 17179869184, partition base 0x0, maxio 400000 ssd 0
    6/04/13 4:10:53.000 PM kernel[0]: hibernate image major 1, minor 0, blocksize 512, pollers 5
    6/04/13 4:11:06.000 PM kernel[0]: hibernate_page_list_setall(preflight 0) start 0xffffff81fd0ea000, 0xffffff81fd16a000
    6/04/13 4:11:06.000 PM kernel[0]: hibernate_page_list_setall time: 761 ms
    6/04/13 4:11:06.000 PM kernel[0]: pages 805095, wire 292488, act 137636, inact 857, cleaned 0 spec 121, zf 830, throt 0, could discard act 94348 inact 78141 purgeable 5548 spec 195126 cleaned 0
    6/04/13 4:11:06.000 PM kernel[0]: hibernate_page_list_setall found pageCount 431932
    6/04/13 4:11:06.000 PM kernel[0]: IOHibernatePollerOpen, ml_get_interrupts_enabled 0
    6/04/13 4:11:06.000 PM kernel[0]: IOHibernatePollerOpen(0)
    6/04/13 4:11:06.000 PM kernel[0]: encryptStart 13300
    6/04/13 4:11:06.000 PM kernel[0]: bitmap_size 0x7f5a0, previewSize 0x48e460, writing 430482 pages @ 0x520d00
    6/04/13 4:11:06.000 PM kernel[0]: encryptEnd a5cd200
    6/04/13 4:11:06.000 PM kernel[0]: image1Size 0x1318ec00, encryptStart1 0x13300, End1 0xa5cd200
    6/04/13 4:11:06.000 PM kernel[0]: encryptStart 1318ec00
    6/04/13 4:11:06.000 PM kernel[0]: encryptEnd 21799000
    6/04/13 4:11:06.000 PM kernel[0]: PMStats: Hibernate write took 8629 ms
    6/04/13 4:11:06.000 PM kernel[0]: all time: 8629 ms, comp bytes: 1763618816 time: 1402 ms 1199 Mb/s, crypt bytes: 414991104 time: 818 ms 483 Mb/s,
    6/04/13 4:11:06.000 PM kernel[0]: image 561614848 (3%), uncompressed 1763618816 (430571), compressed 553329568 (31%), sum1 3f83d918, sum2 f8c9e83a
    6/04/13 4:11:06.000 PM kernel[0]: wired_pages_encrypted 162616, wired_pages_clear 128511, dirty_pages_encrypted 139444
    6/04/13 4:11:06.000 PM kernel[0]: hibernate_write_image done(0)
    6/04/13 4:11:06.000 PM kernel[0]: sleep
    6/04/13 4:21:49.332 PM WindowServer[76]: Created shield window 0x165 for display 0x003f003d
    6/04/13 4:21:49.332 PM WindowServer[76]: handle_will_sleep_auth_and_shield_windows: no action for lock state 1
    6/04/13 4:21:49.332 PM WindowServer[76]: Created shield window 0x166 for display 0x003f003e
    6/04/13 4:21:49.332 PM WindowServer[76]: handle_will_sleep_auth_and_shield_windows: no action for lock state 1
    6/04/13 4:21:49.333 PM WindowServer[76]: handle_will_sleep_auth_and_shield_windows: no action for lock state 1
    6/04/13 4:21:49.000 PM kernel[0]: Wake reason: EC.LidOpen (User)
    6/04/13 4:21:49.000 PM kernel[0]: AirPort_Brcm43xx::powerChange: System Wake - Full Wake/ Dark Wake / Maintenance wake
    6/04/13 4:21:49.000 PM kernel[0]: Previous Sleep Cause: 5
    6/04/13 4:21:49.000 PM kernel[0]: wlEvent: en1 en1 Link DOWN virtIf = 0
    6/04/13 4:21:49.000 PM kernel[0]: AirPort: Link Down on en1. Reason 8 (Disassociated because station leaving).
    6/04/13 4:21:49.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    6/04/13 4:21:49.000 PM kernel[0]: TBT W (1): 0 [x]
    6/04/13 4:21:49.000 PM kernel[0]: The USB device USB Receiver (Port 3 of Hub at 0xfa100000) may have caused a wake by issuing a remote wakeup (3)
    6/04/13 4:21:50.005 PM WindowServer[76]: CGXDisableUpdate: UI updates were forcibly disabled by application "Microsoft Outlook" for over 1.00 seconds. Server has re-enabled them.
    6/04/13 4:21:52.410 PM WindowServer[76]: reenable_update_for_connection: UI updates were finally reenabled by application "Microsoft Outlook" after 3.41 seconds (server forcibly re-enabled them after 1.00 seconds)
    6/04/13 4:21:53.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=569[ksadmin] clearing CS_VALID
    6/04/13 4:21:53.574 PM configd[18]: network changed: v4(en1-:192.168.0.8) DNS- Proxy- SMB-
    6/04/13 4:21:53.000 PM kernel[0]: CODE SIGNING: cs_invalid_page(0x1000): p=572[ksadmin] clearing CS_VALID
    6/04/13 4:21:54.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 2c:b0:5d:f7:70:70  MAC AUTH succeeded
    6/04/13 4:21:54.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    6/04/13 4:21:54.000 PM kernel[0]: AirPort: Link Up on en1
    6/04/13 4:21:54.000 PM kernel[0]: en1: BSSID changed to 2c:b0:5d:f7:70:70
    6/04/13 4:21:54.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    6/04/13 4:21:54.000 PM kernel[0]: AirPort: RSN handshake complete on en1
    6/04/13 4:21:55.535 PM configd[18]: network changed: v4(en1+:192.168.0.8) DNS+ Proxy+ SMB+
    6/04/13 4:21:55.682 PM UserEventAgent[11]: Captive: en1: Not probing 'Bens Wireless' (protected network)
    6/04/13 4:21:55.686 PM configd[18]: network changed: v4(en1!:192.168.0.8) DNS Proxy SMB
    6/04/13 4:21:56.389 PM airportd[566]: _doAutoJoin: Already associated to “Bens Wireless”. Bailing on auto-join.
    6/04/13 4:21:56.419 PM airportd[566]: _doAutoJoin: Already associated to “Bens Wireless”. Bailing on auto-join.
    6/04/13 4:21:56.453 PM airportd[566]: _doAutoJoin: Already associated to “Bens Wireless”. Bailing on auto-join.
    6/04/13 4:22:19.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 2c:b0:5d:f7:70:70  MAC AUTH succeeded
    6/04/13 4:22:19.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    6/04/13 4:22:19.000 PM kernel[0]: AirPort: RSN handshake complete on en1
    6/04/13 4:22:19.000 PM kernel[0]: wl0: Roamed or switched channel, reason #8, bssid 2c:b0:5d:f7:70:70
    6/04/13 4:22:19.000 PM kernel[0]: en1: BSSID changed to 2c:b0:5d:f7:70:70
    6/04/13 4:22:19.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    6/04/13 4:22:54.000 PM kernel[0]: en1: 802.11d country code set to 'GB'.
    6/04/13 4:22:54.000 PM kernel[0]: en1: Supported channels 1 2 3 4 5 6 7 8 9 10 11 12 13 36 40 44 48 52 56 60 64 100 104 108 112 116 120 124 128 132 136 140
    6/04/13 4:23:41.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 2c:b0:5d:f7:70:70  MAC AUTH succeeded
    6/04/13 4:23:41.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    6/04/13 4:23:41.000 PM kernel[0]: AirPort: RSN handshake complete on en1
    6/04/13 4:23:41.000 PM kernel[0]: wl0: Roamed or switched channel, reason #8, bssid 2c:b0:5d:f7:70:70
    6/04/13 4:23:41.000 PM kernel[0]: en1: BSSID changed to 2c:b0:5d:f7:70:70
    6/04/13 4:23:41.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    6/04/13 4:49:47.567 PM UserEventAgent[151]: Error loading /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS/Sera toVirtualAudioPlugIn:  dlopen(/Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/Mac OS/SeratoVirtualAudioPlugIn, 262): no suitable image found.  Did find:
              /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS /SeratoVirtualAudioPlugIn: mach-o, but wrong architecture
    6/04/13 4:49:47.568 PM UserEventAgent[151]: Cannot find function pointer New_SHP_PlugIn for factory 834FC054-C1CC-11D6-BD01-00039315CD46 in CFBundle/CFPlugIn 0x7f9e42a18470 </Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin> (bundle, not loaded)
    6/04/13 4:49:47.641 PM blued[611]: kBTXPCUpdateUserPreferences gConsoleUserUID = 501
    6/04/13 4:51:50.072 PM System Preferences[617]: *** WARNING: -[NSImage compositeToPoint:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    6/04/13 4:51:50.072 PM System Preferences[617]: *** WARNING: -[NSImage compositeToPoint:fromRect:operation:] is deprecated in MacOSX 10.8 and later. Please use -[NSImage drawAtPoint:fromRect:operation:fraction:] instead.
    6/04/13 4:51:50.150 PM System Preferences[617]: Error loading /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS/Sera toVirtualAudioPlugIn:  dlopen(/Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/Mac OS/SeratoVirtualAudioPlugIn, 262): no suitable image found.  Did find:
              /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS /SeratoVirtualAudioPlugIn: mach-o, but wrong architecture
    6/04/13 4:51:50.151 PM System Preferences[617]: Cannot find function pointer New_SHP_PlugIn for factory 834FC054-C1CC-11D6-BD01-00039315CD46 in CFBundle/CFPlugIn 0x7fab8ca42b50 </Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin> (bundle, not loaded)
    6/04/13 4:53:11.598 PM blued[611]: -[CBManager init] init returning self:0x7ff1c380f250
    6/04/13 4:53:23.137 PM blued[611]: kBTXPCUpdateUserPreferences gConsoleUserUID = 501
    6/04/13 4:53:43.014 PM blued[611]: kBTXPCUpdateUserPreferences gConsoleUserUID = 501
    6/04/13 4:53:59.838 PM BluetoothUIServer[634]: Launching application /System/Library/CoreServices/OBEXAgent.app/Contents/MacOS/OBEXAgent
    6/04/13 4:54:54.000 PM kernel[0]: MacAuthEvent en1   Auth result for: 2c:b0:5d:f7:70:70  MAC AUTH succeeded
    6/04/13 4:54:54.000 PM kernel[0]: wlEvent: en1 en1 Link UP virtIf = 0
    6/04/13 4:54:54.000 PM kernel[0]: wl0: Roamed or switched channel, reason #8, bssid 2c:b0:5d:f7:70:70
    6/04/13 4:54:54.000 PM kernel[0]: en1: BSSID changed to 2c:b0:5d:f7:70:70
    6/04/13 4:54:54.000 PM kernel[0]: en1::IO80211Interface::postMessage bssid changed
    6/04/13 4:54:56.000 PM kernel[0]: AirPort: RSN handshake complete on en1
    6/04/13 4:55:47.816 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 4:55:47.846 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 4:55:47.847 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 4:55:47.848 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 4:55:47.890 PM CVMServer[77]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    6/04/13 4:55:47.896 PM WindowServer[76]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042728c0 device: 0x108379b90  isBackBuffered: 1 numComp: 3 numDisp: 3
    6/04/13 4:55:47.919 PM CVMServer[77]: Check-in to the service com.apple.cvmsCompAgent_x86_64 failed. This is likely because you have either unloaded the job or the MachService has the ResetAtClose attribute specified in the launchd.plist. If present, this attribute should be removed.
    6/04/13 4:55:47.987 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 4:55:48.486 PM Google Chrome Helper EH[648]: CGImageCreateWithImageProvider: invalid image size: 0 x 0.
    6/04/13 4:56:13.090 PM VDCAssistant[656]: AVF encoder error: fail to create accelerator instance
    6/04/13 4:56:16.281 PM FacebookVideoCalling[655]: Roadblock URL service returned 400 bad request
    6/04/13 5:00:48.513 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 5:00:48.551 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 5:00:48.607 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 5:00:48.608 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 5:00:48.608 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 5:02:59.658 PM VDCAssistant[671]: AVF encoder error: fail to create accelerator instance
    6/04/13 5:07:14.093 PM rpc.statd[29]: Failed to contact rpc.statd at host 192.168.0.4
    6/04/13 5:43:34.000 PM kernel[0]: Limiting closed port RST response from 276 to 250 packets per second
    6/04/13 5:48:07.000 PM kernel[0]: Limiting closed port RST response from 258 to 250 packets per second
    6/04/13 5:55:52.611 PM com.apple.launchd.peruser.501[148]: ([0x0-0xb00b0].com.apple.BluetoothFileExchange[702]) Exited: Killed: 9
    6/04/13 6:08:01.926 PM rpc.statd[29]: Failed to contact rpc.statd at host 192.168.0.4
    6/04/13 6:13:29.707 PM WindowServer[76]: CGXRegisterWindowWithSystemStatusBar: window c already registered
    6/04/13 7:08:49.921 PM rpc.statd[29]: Failed to contact rpc.statd at host 192.168.0.4
    6/04/13 7:19:07.293 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:07.321 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 7:19:07.322 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 7:19:07.324 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 7:19:07.357 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:07.373 PM WindowServer[76]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042728c0 device: 0x108379b90  isBackBuffered: 1 numComp: 3 numDisp: 3
    6/04/13 7:19:07.805 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:07.826 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 7:19:07.843 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:07.843 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 7:19:07.843 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 7:19:08.404 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:08.428 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 7:19:08.428 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 7:19:08.430 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 7:19:08.449 PM WindowServer[76]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042728c0 device: 0x108379b90  isBackBuffered: 1 numComp: 3 numDisp: 3
    6/04/13 7:19:08.480 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:55.346 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:55.371 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 7:19:55.406 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:55.407 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 7:19:55.407 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 7:19:57.227 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:57.255 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 7:19:57.256 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 7:19:57.258 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 7:19:57.288 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:57.290 PM WindowServer[76]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042728c0 device: 0x108379b90  isBackBuffered: 1 numComp: 3 numDisp: 3
    6/04/13 7:19:57.784 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:57.807 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 7:19:57.843 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:57.844 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 7:19:57.844 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 7:19:58.402 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:19:58.428 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 7:19:58.428 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 7:19:58.430 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 7:19:58.449 PM WindowServer[76]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042728c0 device: 0x108379b90  isBackBuffered: 1 numComp: 3 numDisp: 3
    6/04/13 7:19:58.476 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:20:26.534 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:20:26.570 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 7:20:26.576 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:20:26.576 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 7:20:26.576 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 7:20:27.195 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:20:27.225 PM WindowServer[76]: Received display connect changed for display 0x3f003d
    6/04/13 7:20:27.226 PM WindowServer[76]: Received display connect changed for display 0x3f003e
    6/04/13 7:20:27.227 PM WindowServer[76]: CGXMuxAcknowledge: Posting glitchless acknowledge
    6/04/13 7:20:27.260 PM WindowServer[76]: Received display connect changed for display 0x42728c0
    6/04/13 7:20:27.261 PM WindowServer[76]: MPAccessSurfaceForDisplayDevice: Set up page flip mode on display 0x042728c0 device: 0x108379b90  isBackBuffered: 1 numComp: 3 numDisp: 3
    6/04/13 7:20:27.847 PM WindowServer[76]: Received display connect changed for disp

    Did you ever solve your problem?
    What is StartOuc?  It seems to be having a problem:
    7/04/13 4:25:56.099 AM SystemStarter[97]: StartOuc (105) did not complete successfully
    7/04/13 4:25:56.099 AM SystemStarter[97]: The following StartupItems failed to start properly:
    7/04/13 4:25:56.099 AM SystemStarter[97]: /Library/StartupItems/StartOuc
    7/04/13 4:25:56.099 AM SystemStarter[97]:  - execution of Startup script failed
    It might be related to your Serato, which seems to have been installed before a major OSX upgrade:
    (See the "no suitable image found, but I did find... ..but wrong architecture")
    7/04/13 4:25:41.731 AM loginwindow[42]: Error loading /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS/Sera toVirtualAudioPlugIn:  dlopen(/Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/Mac OS/SeratoVirtualAudioPlugIn, 262): no suitable image found.  Did find:
              /Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin/Contents/MacOS /SeratoVirtualAudioPlugIn: mach-o, but wrong architecture
    7/04/13 4:25:41.731 AM loginwindow[42]: Cannot find function pointer New_SHP_PlugIn for factory 834FC054-C1CC-11D6-BD01-00039315CD46 in CFBundle/CFPlugIn 0x7f8796016d80 </Library/Audio/Plug-Ins/HAL/SeratoVirtualAudioPlugIn.plugin> (bundle, not loaded)
    This would stop your audio plugin, and might be related to the Ouc failing.
    Finally, there's a folder-action that is constantly triggering but maybe failing or not working:
    7/04/13 4:25:56.329 AM com.apple.launchd.peruser.501[133]: (com.apple.FolderActions.folders) Throttling respawn: Will start in 10 seconds
    7/04/13 4:25:56.726 AM com.apple.launchd.peruser.501[133]: (com.apple.FolderActions.folders) Throttling respawn: Will start in 10 seconds
    7/04/13 4:25:56.827 AM com.apple.launchd.peruser.501[133]: (com.apple.FolderActions.folders) Throttling respawn: Will start in 10 seconds
    7/04/13 4:25:57.017 AM com.apple.launchd.peruser.501[133]: (com.apple.FolderActions.folders) Throttling respawn: Will start in 10 seconds
    7/04/13 4:25:57.118 AM com.apple.launchd.peruser.501[133]: (com.apple.FolderActions.folders) Throttling respawn: Will start in 9 seconds
    7/04/13 4:25:57.271 AM com.apple.launchd.peruser.501[133]: (com.apple.FolderActions.folders) Throttling respawn: Will start in 9 seconds
    7/04/13 4:25:57.372 AM com.apple.launchd.peruser.501[133]: (com.apple.FolderActions.folders) Throttling respawn: Will start in 9 seconds
    ...that constant start/stop/start/stop would cause load and slow things down.
    It might be worth triggering a rebuild of your Search (MDS) which is complaining, and if it's constantly re-indexing things, would cause load:
    7/04/13 4:25:45.772 AM mds[38]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    7/04/13 4:25:45.773 AM mds[38]: (Warning) Server: No stores registered for metascope "kMDQueryScopeComputer"
    Hope that helps if you are still seeing an issue.

  • Need some help with Slow Downs in Java3D and Servlets

    Hi,
    I realize that there is a separate forum for Java 3D, but I posted there, and did not get any response. This is kinda the crux of my program, so I would like to invite anybody on this forum with knowledge of Java 3D and servlets to give it a stab. Between this post and that one, there are TWENTY duke dollars up for grabs.
    Thanks.
    http://forum.java.sun.com/thread.jspa?threadID=603198

    Let me have an educated guess.
    You calculated the time elapsed before sending in a server request - and at that point you have you updated timeLastStateChange yet, which means by the time of the next calculation of time elapsed this apparent delay is not counted in, hence the slow down in animation rate.
    Hope this helps~
    Alex Lam S.L.

  • Guess I do need a little help with packages after all...

    Tried figuring in this out for the past 3 hours, various searches, scenarios etc...b4 posting....
    Okay, well....just like many aspects of this language, think I've got it down, and a
    new situation comes up where I can't implement it....in this case my own packages.
    (which is frustrating, but good because teaches troubleshooting, ingranes
    things into my peanut)
    Have done it before through tutorials...but now am having an issue...here we go:
    These are very small files..... 3 classes/one main
    http://www.cadenhead.org/book/24java/chapter10.shtml
    (see bottom for direct links)
    What I did first was put them in c:\java\2\modems
    compiled them all, everthing works great.
    #2
    I deleted the class files, and put all of the source into: c:\java\2\
    #3
    I edited the first 3 files to have the very first line ot each say:
    package com.modempack;
    No other edits, just this simple copy/paste at the top of each of those files
    #4
    For the file TestModems.java the only edit made was to put the following line at the top of the file:
    import com.modempack;
    #5 Compiled the first 3 files with the command "javac -d . FILENAME.java"
    they compile fine(you have to compile Modem.java 1st)
    #6 Try to compile the TestModems.java file with the same style or even just "javac Testmodems.java" and get the following error:
    C:\java\2>javac TestModems.java
    TestModems.java:1: package com does not exist
    import com.modempack;
    ^
    TestModems.java:5: cannot access CableModem
    bad class file: .\CableModem.java
    file does not contain class CableModem
    Please remove or make sure it appears in the correct subdirectory of the classpa
    th.
    CableModem roadRunner = new CableModem();
    ^
    2 errors
    It says package "com" does not exist" ...but it's created automatically when compiling the 1st 3 files....am at a lost.........could only think classpath issue somehow.....
    CableModem.java
    http://www.cadenhead.org/book/24java/source/chapter10/CableModem.java
    DslModem.java
    http://www.cadenhead.org/book/24java/source/chapter10/DslModem.java
    Modem.java
    http://www.cadenhead.org/book/24java/source/chapter10/Modem.java
    TestModems.java(the main app)
    http://www.cadenhead.org/book/24java/source/chapter10/TestModems.java

    Thank you for your response once again
    (assigned u the dukies from last thread)
    Argggghhhh!!!!! / Yippie Kayay!!!!!!!!!!!!!!
    Man oh man... HUGE headache....(wanting to studying the stuff from last post you helped on...having troubles with freaking packages SUCKS:) :) :)
    (but...will am learning, so that's good)
    Sooo....
    I put the actual ".java" files in the same directories, but that did not make a difference....
    So what I did was use the fully qualified /explicit name for each class.
    IE:
    import com.modempack;Gives the original 2 errors....that the above package does NOT exist??? wtf
    import com.modempack.*;Gives a single bad class erro
    Using either of the above and the following command:
    javac -classpath TestModems.javagives "no source files found"
    Using either of the above and the following command:
    javac -classpath c:\java\2\com\modems TestModems.javaYielded 5 errors of cannot resolve symbol
    Using: *****************************
    import com.modempack.Modem;
    import com.modempack.CableModem;
    import com.modempack.DslModem;and adding public in fron of the int[/code" variable....WORKS
    It is my understanding that
    import javax.swing.*;
    does NOT import everything with the swing library, so when thinking
    along those lines, this makes 100% sense....I just thought that with packages
    you could provide one, and everything else in the package is imported, ie: if you have a package with 500 classes in it, you wouldn't want 500 import lines....something seems like something
    must be wrong with the class files or something/classpath still or else this would work somehow???
    Well...going to go mess around somemore, just an update.
    Thank you again                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Help with HP printer all-in-one C4380

    hi, 
    Can anyone help me. My printer keeps saying that there is a paper jam. There isnt any paper in the printer. I can't get it to work.
    Many thanks,
    Yossi 

    On the printer, press the Wireless button and then select the option to restore network defaults from the main menu. Now run the downloaded driver, then click on Reconfigure Network Settings, or Add A Device, and just follow the instructions to reconnect it to your new network.
    Make it easier for other people to find solutions, by marking my answer with \'Accept as Solution\' if it solves your problem.
    Click on the BLUE KUDOS button on the left to say "Thanks"
    I am an ex-HP Employee.

Maybe you are looking for

  • Issue in Asset Explorer

    Hi I have a issue in which i have acquired an asset on 15.6.2006.. and assigned a depreciation key to calculate the dep @ 4.75% SLM basis. The system is not displaying the values from 2008 onwards but is not showing the values in 2006 and 2007. The u

  • Running subreport from within a subreport

    Hello, I have Crystal report 14. I'm trying to run a subreport from within another subreport.   When the 1st subreport loads, the subreport that was within this one is not visible.  Is there a way to run a subreport from within a subreport? Thanks

  • 11G Database Certification Matrix

    Hi there, I'm looking for a certification matrix for oracle 11g database. I want to find out what OS's are supported by the different versions of 11g. I've checked the oracle website but I cannot find it. Is there a document anywhere? thanks, faoilea

  • USING WITH SELECTION-TABLE rspar

    Hi, I want to Submit a report via selection screen filling the selection screen values. Do let me know how to fill the selection-table and pass it. Thanks & Regards, SP

  • Skype upgrade won't work on Snow Leopard

    My Macair uses Snow Leopard. In the last few days when wanting to open Skype, it came up with a message saying I had to upgrade or it wouldn't work any longer. I downloaded upgrade 6.3.0.602. Skype opened its login window and I entered my username an