GATHER_STALE_STATS_JOB issue.

Hello All,
We are running 11.1.0.7.0 hosting on HP UX box. From last 2 days, we were made aware of the database slowness. Once, we tried to analyze, the GATHER_STALE_STATS_JOB was overrunning. earlier , it used to run in no time. we also noticed the session running the job experienced "library cache lock" wait events. we then stopped the job and database performance was back to normal. we also extracted the sql_id from AWR for the most time spent. Also, from the AWR , the wait , which spent most of the time waiting was "library cache lock". Just wondering , what caused this job to run crawl here. I also extracted the plan of the sql , which waits most of the time for "library cache lock" and it turn out pretty gigantic. will also paste that on board.
I will really appreciate your valuable inputs.
Note :- Had to omit the predicate part to the server the limit of maximum charecters.
Select X.sku_id,X.prod_group
,X.brand_type
from
    (select distinct iwm.sku_id, im.prod_group
    , sc2.code_desc as brand_type
    from item_whse_master iwm, sku_invn si, item_master im
    , sys_code sc2
    where iwm.sku_id = si.sku_id
      and iwm.whse = 'NDC'
      and (si.qty_on_hand - si.qty_not_alloc) > 0
      and iwm.sku_id = im.sku_id
      and not exists (select 1 from pick_locn_dtl pld where pld.sku_id = iwm.sku_id and pld.locn_id
      in (select locn_id from locn_hdr where work_grp = 'BDC'))
   --   and nvl(upper (trim(iwm.misc_alpha_1) ) ,'-') not in ('NO ACT','NO ACT LOC','NOT ACT')
    and not exists (select 1 from case_dtl cd, case_lock cl where cd.case_nbr =cl.case_nbr and cd.sku_id = iwm.sku_id)
    AND   SC2.CODE_ID(+) = IM.PROD_GROUP     AND SC2.REC_TYPE = 'B'  AND SC2.CODE_TYPE = '664')X,
    select distinct PD.SKU_ID from
    PKT_HDR_INTRNL PH inner join PKT_DTL PD on PH.PKT_CTRL_NBR = PD.PKT_CTRL_NBR
    where PH.STAT_CODE = 10
    )Y
    where x.sku_id = y.sku_ID
| Id  | Operation                                 | Name                           | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT                          |                                |       |       |  3366 (100)|          |
|   1 |  NESTED LOOPS SEMI                        |                                |    16 |  3632 |  3366   (2)| 00:00:41 |
|   2 |   VIEW                                    |                                |    16 |  3568 |  3225   (2)| 00:00:39 |
|   3 |    HASH UNIQUE                            |                                |    16 |  5216 |  3225   (2)| 00:00:39 |
|*  4 |     FILTER                                |                                |       |       |            |          |
|   5 |      HASH GROUP BY                        |                                |    16 |  5216 |  3225   (2)| 00:00:39 |
|   6 |       NESTED LOOPS                        |                                |     1 |   326 |  3220   (2)| 00:00:39 |
|*  7 |        HASH JOIN                          |                                |    10 |  1410 |  2364   (1)| 00:00:29 |
|   8 |         TABLE ACCESS BY INDEX ROWID       | SYS_CODE                       |     1 |    63 |     1   (0)| 00:00:01 |
|*  9 |          INDEX RANGE SCAN                 | PK_SYS_CODE                    |     1 |       |     1   (0)| 00:00:01 |
|  10 |         NESTED LOOPS                      |                                |       |       |            |          |
|  11 |          NESTED LOOPS                     |                                |  3045 |   231K|  2363   (1)| 00:00:29 |
|* 12 |           INDEX FULL SCAN                 | PK_ITEM_WHSE_MASTER            |  3045 |   145K|  1601   (1)| 00:00:20 |
|  13 |            NESTED LOOPS                   |                                |       |       |            |          |
|  14 |             NESTED LOOPS                  |                                |     1 |    35 |     2   (0)| 00:00:01 |
|  15 |              TABLE ACCESS BY INDEX ROWID  | PICK_LOCN_DTL                  |     1 |    21 |     1   (0)| 00:00:01 |
|* 16 |               INDEX RANGE SCAN            | PICK_LOCN_DTL_IND_1            |     1 |       |     1   (0)| 00:00:01 |
|* 17 |              INDEX UNIQUE SCAN            | PK_LOCN_HDR                    |     1 |       |     1   (0)| 00:00:01 |
|* 18 |             TABLE ACCESS BY INDEX ROWID   | LOCN_HDR                       |     1 |    14 |     1   (0)| 00:00:01 |
|  19 |            NESTED LOOPS                   |                                |     4 |   140 |     2   (0)| 00:00:01 |
|* 20 |             INDEX RANGE SCAN              | CD_WAVE_IND1                   |     3 |    69 |     1   (0)| 00:00:01 |
|* 21 |             INDEX RANGE SCAN              | PK_CASE_LOCK                   |     1 |    12 |     1   (0)| 00:00:01 |
|* 22 |           INDEX UNIQUE SCAN               | PK_ITEM_MASTER                 |     1 |       |     1   (0)| 00:00:01 |
|  23 |          TABLE ACCESS BY INDEX ROWID      | ITEM_MASTER                    |     1 |    29 |     1   (0)| 00:00:01 |
|  24 |        VIEW                               |                                |     1 |   185 |    86   (4)| 00:00:02 |
|  25 |         UNION ALL PUSHED PREDICATE        |                                |       |       |            |          |
|  26 |          NESTED LOOPS                     |                                |     3 |   285 |     3   (0)| 00:00:01 |
|  27 |           TABLE ACCESS BY INDEX ROWID     | CASE_DTL                       |     3 |   228 |     2   (0)| 00:00:01 |
|* 28 |            INDEX RANGE SCAN               | CD_WAVE_IND1                   |     3 |       |     1   (0)| 00:00:01 |
|* 29 |           INDEX RANGE SCAN                | CH_WAVE_IND1                   |     1 |    19 |     1   (0)| 00:00:01 |
|  30 |          NESTED LOOPS                     |                                |       |       |            |          |
|  31 |           NESTED LOOPS                    |                                |     1 |   137 |     6  (17)| 00:00:01 |
|  32 |            NESTED LOOPS                   |                                |     1 |    61 |     5  (20)| 00:00:01 |
|  33 |             VIEW                          | VW_SQ_1                        |     1 |    42 |     3   (0)| 00:00:01 |
|  34 |              SORT UNIQUE                  |                                |     1 |    32 |            |          |
|  35 |               NESTED LOOPS                |                                |     1 |    32 |     3   (0)| 00:00:01 |
|* 36 |                TABLE ACCESS BY INDEX ROWID| SYS_CODE                       |     1 |    17 |     1   (0)| 00:00:01 |
|* 37 |                 INDEX RANGE SCAN          | PK_SYS_CODE                    |     1 |       |     1   (0)| 00:00:01 |
|* 38 |                INDEX FULL SCAN            | PK_CASE_LOCK                   |     1 |    15 |     2   (0)| 00:00:01 |
|* 39 |             INDEX RANGE SCAN              | CH_WAVE_IND1                   |     1 |    19 |     1   (0)| 00:00:01 |
|* 40 |            INDEX RANGE SCAN               | CASE_DTL_IND_2                 |     1 |       |     1   (0)| 00:00:01 |
|* 41 |           TABLE ACCESS BY INDEX ROWID     | CASE_DTL                       |     1 |    76 |     1   (0)| 00:00:01 |
|  42 |          NESTED LOOPS                     |                                |     1 |    73 |     2   (0)| 00:00:01 |
|* 43 |           TABLE ACCESS BY INDEX ROWID     | ALLOC_INVN_DTL                 |     1 |    54 |     1   (0)| 00:00:01 |
|* 44 |            INDEX RANGE SCAN               | FK_ALLOC_INVN_DTL_TO_ITEM_MAST |     2 |       |     1   (0)| 00:00:01 |
|* 45 |           INDEX RANGE SCAN                | CH_WAVE_IND1                   |     1 |    19 |     1   (0)| 00:00:01 |
|  46 |          NESTED LOOPS SEMI                |                                |     1 |    88 |     3   (0)| 00:00:01 |
|  47 |           NESTED LOOPS                    |                                |     1 |    77 |     2   (0)| 00:00:01 |
|* 48 |            TABLE ACCESS BY INDEX ROWID    | ALLOC_INVN_DTL                 |     1 |    58 |     1   (0)| 00:00:01 |
|* 49 |             INDEX RANGE SCAN              | FK_ALLOC_INVN_DTL_TO_ITEM_MAST |     2 |       |     1   (0)| 00:00:01 |
|* 50 |            INDEX RANGE SCAN               | CH_WAVE_IND1                   |     1 |    19 |     1   (0)| 00:00:01 |
|* 51 |           TABLE ACCESS BY INDEX ROWID     | INVN_NEED_TYPE                 |    14 |   154 |     1   (0)| 00:00:01 |
|* 52 |            INDEX RANGE SCAN               | FK_INT_TO_INT_MASTER           |     1 |       |     1   (0)| 00:00:01 |
|  53 |          NESTED LOOPS                     |                                |       |       |            |          |
|  54 |           NESTED LOOPS                    |                                |     1 |    96 |     3   (0)| 00:00:01 |
|  55 |            NESTED LOOPS                   |                                |     1 |    83 |     2   (0)| 00:00:01 |
|* 56 |             TABLE ACCESS BY INDEX ROWID   | TASK_DTL                       |     1 |    64 |     1   (0)| 00:00:01 |
|* 57 |              INDEX RANGE SCAN             | FK_TASK_DTL_TO_ITEM_MASTER     |     2 |       |     1   (0)| 00:00:01 |
|* 58 |             INDEX RANGE SCAN              | CH_WAVE_IND1                   |     1 |    19 |     1   (0)| 00:00:01 |
|* 59 |            INDEX UNIQUE SCAN              | PK_TASK_HDR                    |     1 |       |     1   (0)| 00:00:01 |
|* 60 |           TABLE ACCESS BY INDEX ROWID     | TASK_HDR                       |     1 |    13 |     1   (0)| 00:00:01 |
|  61 |          NESTED LOOPS SEMI                |                                |     1 |   111 |     4   (0)| 00:00:01 |
|  62 |           NESTED LOOPS                    |                                |     1 |   100 |     3   (0)| 00:00:01 |
|  63 |            NESTED LOOPS                   |                                |     1 |    83 |     2   (0)| 00:00:01 |
|* 64 |             TABLE ACCESS BY INDEX ROWID   | TASK_DTL                       |     1 |    64 |     1   (0)| 00:00:01 |
|* 65 |              INDEX RANGE SCAN             | FK_TASK_DTL_TO_ITEM_MASTER     |     2 |       |     1   (0)| 00:00:01 |
|* 66 |             INDEX RANGE SCAN              | CH_WAVE_IND1                   |     1 |    19 |     1   (0)| 00:00:01 |
|* 67 |            TABLE ACCESS BY INDEX ROWID    | TASK_HDR                       |     1 |    17 |     1   (0)| 00:00:01 |
|* 68 |             INDEX UNIQUE SCAN             | PK_TASK_HDR                    |     1 |       |     1   (0)| 00:00:01 |
|* 69 |           TABLE ACCESS BY INDEX ROWID     | INVN_NEED_TYPE                 |    14 |   154 |     1   (0)| 00:00:01 |
|* 70 |            INDEX RANGE SCAN               | FK_INT_TO_INT_MASTER           |     1 |       |     1   (0)| 00:00:01 |
|  71 |          NESTED LOOPS                     |                                |       |       |            |          |
|  72 |           NESTED LOOPS                    |                                |    15 |  1725 |     9   (0)| 00:00:01 |
|  73 |            TABLE ACCESS BY INDEX ROWID    | CARTON_DTL                     |    18 |  1566 |     4   (0)| 00:00:01 |
|* 74 |             INDEX RANGE SCAN              | CARTON_DTL_IND_1               |    18 |       |     1   (0)| 00:00:01 |
|* 75 |            INDEX UNIQUE SCAN              | PK_CARTON_HDR                  |     1 |       |     1   (0)| 00:00:01 |
|* 76 |           TABLE ACCESS BY INDEX ROWID     | CARTON_HDR                     |     1 |    28 |     1   (0)| 00:00:01 |
|  77 |          NESTED LOOPS SEMI                |                                |    15 |  2085 |    12   (0)| 00:00:01 |
|  78 |           NESTED LOOPS                    |                                |    15 |  1725 |     8   (0)| 00:00:01 |
|* 79 |            TABLE ACCESS BY INDEX ROWID    | CARTON_DTL                     |    15 |  1305 |     4   (0)| 00:00:01 |
|* 80 |             INDEX RANGE SCAN              | CARTON_DTL_IND_1               |    18 |       |     1   (0)| 00:00:01 |
|* 81 |            TABLE ACCESS BY INDEX ROWID    | CARTON_HDR                     |     1 |    28 |     1   (0)| 00:00:01 |
|* 82 |             INDEX UNIQUE SCAN             | PK_CARTON_HDR                  |     1 |       |     1   (0)| 00:00:01 |
|* 83 |           INDEX RANGE SCAN                | ALLOC_INVN_DTL_IND_5           | 91590 |  2146K|     1   (0)| 00:00:01 |
|  84 |          NESTED LOOPS SEMI                |                                |     1 |   120 |    15   (0)| 00:00:01 |
|  85 |           NESTED LOOPS                    |                                |    15 |  1725 |     8   (0)| 00:00:01 |
|* 86 |            TABLE ACCESS BY INDEX ROWID    | CARTON_DTL                     |    15 |  1305 |     4   (0)| 00:00:01 |
|* 87 |             INDEX RANGE SCAN              | CARTON_DTL_IND_1               |    18 |       |     1   (0)| 00:00:01 |
|* 88 |            TABLE ACCESS BY INDEX ROWID    | CARTON_HDR                     |     1 |    28 |     1   (0)| 00:00:01 |
|* 89 |             INDEX UNIQUE SCAN             | PK_CARTON_HDR                  |     1 |       |     1   (0)| 00:00:01 |
|* 90 |           TABLE ACCESS BY INDEX ROWID     | TASK_DTL                       |     1 |     5 |     1   (0)| 00:00:01 |
|* 91 |            INDEX RANGE SCAN               | TASK_DTL_IND_4                 |     1 |       |     1   (0)| 00:00:01 |
|* 92 |          TABLE ACCESS BY INDEX ROWID      | TRANS_INVN                     |     1 |    69 |     1   (0)| 00:00:01 |
|* 93 |           INDEX RANGE SCAN                | FK_TRANS_INVN_TO_ITEM_MASTER   |     1 |       |     1   (0)| 00:00:01 |
|  94 |          NESTED LOOPS                     |                                |       |       |            |          |
|  95 |           NESTED LOOPS                    |                                |     1 |    86 |     2   (0)| 00:00:01 |
|* 96 |            TABLE ACCESS BY INDEX ROWID    | TRANS_INVN                     |     1 |    69 |     1   (0)| 00:00:01 |
|* 97 |             INDEX RANGE SCAN              | FK_TRANS_INVN_TO_ITEM_MASTER   |     1 |       |     1   (0)| 00:00:01 |
|* 98 |            INDEX UNIQUE SCAN              | PK_SYS_CODE                    |     1 |       |     1   (0)| 00:00:01 |
|* 99 |           TABLE ACCESS BY INDEX ROWID     | SYS_CODE                       |     1 |    17 |     1   (0)| 00:00:01 |
|*100 |          FILTER                           |                                |       |       |            |          |
| 101 |           NESTED LOOPS                    |                                |       |       |            |          |
| 102 |            NESTED LOOPS                   |                                |     1 |    65 |     2   (0)| 00:00:01 |
|*103 |             TABLE ACCESS BY INDEX ROWID   | PICK_LOCN_DTL                  |     1 |    46 |     1   (0)| 00:00:01 |
|*104 |              INDEX RANGE SCAN             | PICK_LOCN_DTL_IND_1            |     1 |       |     1   (0)| 00:00:01 |
|*105 |             INDEX UNIQUE SCAN             | PK_LOCN_HDR                    |     1 |       |     1   (0)| 00:00:01 |
|*106 |            TABLE ACCESS BY INDEX ROWID    | LOCN_HDR                       |     1 |    19 |     1   (0)| 00:00:01 |
| 107 |           SORT UNIQUE                     |                                |     2 |    54 |     6  (67)| 00:00:01 |
| 108 |            UNION-ALL                      |                                |       |       |            |          |
| 109 |             NESTED LOOPS                  |                                |     1 |    29 |     2   (0)| 00:00:01 |
|*110 |              TABLE ACCESS BY INDEX ROWID  | SYS_CODE_TYPE                  |     1 |     8 |     1   (0)| 00:00:01 |
|*111 |               INDEX UNIQUE SCAN           | PK_SYS_CODE_TYPE               |     1 |       |     1   (0)| 00:00:01 |
|*112 |              TABLE ACCESS BY INDEX ROWID  | WHSE_SYS_CODE                  |     1 |    21 |     1   (0)| 00:00:01 |
|*113 |               INDEX UNIQUE SCAN           | PK_WHSE_SYS_CODE               |     1 |       |     1   (0)| 00:00:01 |
| 114 |             NESTED LOOPS                  |                                |     1 |    25 |     2   (0)| 00:00:01 |
|*115 |              TABLE ACCESS BY INDEX ROWID  | SYS_CODE_TYPE                  |     1 |     8 |     1   (0)| 00:00:01 |
|*116 |               INDEX UNIQUE SCAN           | PK_SYS_CODE_TYPE               |     1 |       |     1   (0)| 00:00:01 |
|*117 |              TABLE ACCESS BY INDEX ROWID  | SYS_CODE                       |     1 |    17 |     1   (0)| 00:00:01 |
|*118 |               INDEX UNIQUE SCAN           | PK_SYS_CODE                    |     1 |       |     1   (0)| 00:00:01 |
| 119 |          NESTED LOOPS                     |                                |       |       |            |          |
| 120 |           NESTED LOOPS                    |                                |     1 |   105 |     4   (0)| 00:00:01 |
| 121 |            NESTED LOOPS                   |                                |     3 |   132 |     3   (0)| 00:00:01 |
| 122 |             TABLE ACCESS BY INDEX ROWID   | PKT_DTL                        |     4 |   116 |     2   (0)| 00:00:01 |
|*123 |              INDEX RANGE SCAN             | PKT_DTL_IND_6                  |     4 |       |     1   (0)| 00:00:01 |
| 124 |             TABLE ACCESS BY INDEX ROWID   | PKT_HDR                        |     1 |    15 |     1   (0)| 00:00:01 |
|*125 |              INDEX UNIQUE SCAN            | PK_PKT_HDR                     |     1 |       |     1   (0)| 00:00:01 |
|*126 |            INDEX RANGE SCAN               | PKT_DTL_SKU_INVN_IND_1         |     1 |       |     1   (0)| 00:00:01 |
|*127 |           TABLE ACCESS BY INDEX ROWID     | PKT_DTL_SKU_INVN               |     1 |    61 |     1   (0)| 00:00:01 |
| 128 |          NESTED LOOPS                     |                                |       |       |            |          |
| 129 |           NESTED LOOPS                    |                                |     1 |   222 |     2   (0)| 00:00:01 |
| 130 |            TABLE ACCESS BY INDEX ROWID    | STORE_DISTRO                   |     1 |   162 |     1   (0)| 00:00:01 |
|*131 |             INDEX RANGE SCAN              | STORE_DISTRO_IND_10            |     1 |       |     1   (0)| 00:00:01 |
|*132 |            INDEX RANGE SCAN               | FK_STORE_DISTRO_SKU_INVN_TO_SD |     1 |       |     1   (0)| 00:00:01 |
|*133 |           TABLE ACCESS BY INDEX ROWID     | STORE_DISTRO_SKU_INVN          |     1 |    60 |     1   (0)| 00:00:01 |
|*134 |          TABLE ACCESS BY INDEX ROWID      | ALLOC_INVN_DTL                 |     1 |    54 |     1   (0)| 00:00:01 |
|*135 |           INDEX RANGE SCAN                | FK_ALLOC_INVN_DTL_TO_ITEM_MAST |     2 |       |     1   (0)| 00:00:01 |
| 136 |          NESTED LOOPS                     |                                |       |       |            |          |
| 137 |           NESTED LOOPS                    |                                |     1 |    71 |     2   (0)| 00:00:01 |
|*138 |            TABLE ACCESS BY INDEX ROWID    | ALLOC_INVN_DTL                 |     1 |    57 |     1   (0)| 00:00:01 |
|*139 |             INDEX RANGE SCAN              | FK_ALLOC_INVN_DTL_TO_ITEM_MAST |     2 |       |     1   (0)| 00:00:01 |
|*140 |            INDEX UNIQUE SCAN              | PK_INVN_NEED_TYPE              |     1 |       |     1   (0)| 00:00:01 |
|*141 |           TABLE ACCESS BY INDEX ROWID     | INVN_NEED_TYPE                 |     1 |    14 |     1   (0)| 00:00:01 |
| 142 |          NESTED LOOPS                     |                                |       |       |            |          |
| 143 |           NESTED LOOPS                    |                                |     1 |    72 |     2   (0)| 00:00:01 |
|*144 |            TABLE ACCESS BY INDEX ROWID    | TASK_DTL                       |     1 |    55 |     1   (0)| 00:00:01 |
|*145 |             INDEX RANGE SCAN              | FK_TASK_DTL_TO_ITEM_MASTER     |     2 |       |     1   (0)| 00:00:01 |
|*146 |            INDEX UNIQUE SCAN              | PK_TASK_HDR                    |     1 |       |     1   (0)| 00:00:01 |
|*147 |           TABLE ACCESS BY INDEX ROWID     | TASK_HDR                       |     1 |    17 |     1   (0)| 00:00:01 |
| 148 |          NESTED LOOPS SEMI                |                                |     1 |    89 |     3   (0)| 00:00:01 |
| 149 |           NESTED LOOPS                    |                                |     1 |    75 |     2   (0)| 00:00:01 |
|*150 |            TABLE ACCESS BY INDEX ROWID    | TASK_DTL                       |     1 |    58 |     1   (0)| 00:00:01 |
|*151 |             INDEX RANGE SCAN              | FK_TASK_DTL_TO_ITEM_MASTER     |     2 |       |     1   (0)| 00:00:01 |
|*152 |            TABLE ACCESS BY INDEX ROWID    | TASK_HDR                       |     1 |    17 |     1   (0)| 00:00:01 |
|*153 |             INDEX UNIQUE SCAN             | PK_TASK_HDR                    |     1 |       |     1   (0)| 00:00:01 |
|*154 |           TABLE ACCESS BY INDEX ROWID     | INVN_NEED_TYPE                 |    14 |   196 |     1   (0)| 00:00:01 |
|*155 |            INDEX RANGE SCAN               | FK_INT_TO_INT_MASTER           |     1 |       |     1   (0)| 00:00:01 |
| 156 |          NESTED LOOPS                     |                                |       |       |            |          |
| 157 |           NESTED LOOPS                    |                                |     1 |   101 |     2   (0)| 00:00:01 |
|*158 |            TABLE ACCESS BY INDEX ROWID    | ASN_DTL                        |     1 |    83 |     1   (0)| 00:00:01 |
|*159 |             INDEX RANGE SCAN              | ASN_DTL_IND_1                  |     3 |       |     1   (0)| 00:00:01 |
|*160 |            INDEX UNIQUE SCAN              | PK_ASN_HDR                     |     1 |       |     1   (0)| 00:00:01 |
|*161 |           TABLE ACCESS BY INDEX ROWID     | ASN_HDR                        |     1 |    18 |     1   (0)| 00:00:01 |
| 162 |          NESTED LOOPS                     |                                |       |       |            |          |
| 163 |           NESTED LOOPS                    |                                |     1 |   195 |     2   (0)| 00:00:01 |
| 164 |            TABLE ACCESS BY INDEX ROWID    | WORK_ORD_HDR                   |     1 |    60 |     1   (0)| 00:00:01 |
|*165 |             INDEX RANGE SCAN              | WORK_ORD_HDR_IND_1             |     1 |       |     1   (0)| 00:00:01 |
|*166 |            INDEX RANGE SCAN               | FK_WORK_ORD_DTL_TO_ITEM_MASTER |     1 |       |     1   (0)| 00:00:01 |
|*167 |           TABLE ACCESS BY INDEX ROWID     | WORK_ORD_DTL                   |     1 |   135 |     1   (0)| 00:00:01 |
| 168 |   VIEW PUSHED PREDICATE                   |                                |     2 |     8 |     9  (12)| 00:00:01 |
| 169 |    NESTED LOOPS                           |                                |     2 |   178 |     9  (12)| 00:00:01 |
|*170 |     VIEW                                  | index$_join$_011               |   559 | 31304 |     8  (13)| 00:00:01 |
|*171 |      HASH JOIN                            |                                |       |       |            |          |
|*172 |       INDEX RANGE SCAN                    | PKT_HDR_INTRNL_IND_3           |   559 | 31304 |     1   (0)| 00:00:01 |
| 173 |       INDEX FAST FULL SCAN                | PK_PKT_HDR_INTRNL              |   559 | 31304 |     6   (0)| 00:00:01 |
|*174 |     INDEX RANGE SCAN                      | PKT_DTL_IND_7                  |     1 |    33 |     1   (0)| 00:00:01 |
------------------------ AWR top 5 ---------------------------
DB CPU   12,130   39.87  
library cache lock 19 3,974 209179 13.06 Concurrency
db file sequential read 32,955 78 2 0.26 User I/O
log file sync 24,401 35 1 0.12 Commit
enq: TX - row lock contention 27 30 1114 0.10 Application Edited by: 937853 on Jan 16, 2013 9:41 AM

The gather stats task should run in the overnight and weekend window so unless someone launched a gather stats task during the day it should not be your problem. That is unless you are seeing the issue at night and it goes away once the stats job terminated for the day.
You should be able to look at the memory management views to see if the note from Oracle about automatic memory managment granule migration being a potential cause of the waits applies. If it looks like you have issues in this area you could set reasonable minimum pool sizes to prevent Oracle from overdoing the memory migrations and see if that helps.
Naturally you should also look at the query plan and try to determine if it is the same plan the query would have been using last week. Check the tables/indexes to see when the statistics were last updated for the object and note if any were just changed while the others were not. Sometimes a change to one objects effects what the CBO expects to find in relation to how many rows in one object correspond to how many qualifying rows in another and you need the objects to have statistics collected at the same time.
A big question is, is the problem database wide or actually limited to a specific query or application process.
HTH -- Mark D Powell --

Similar Messages

  • New DVR Issues (First Run, Channel Switching, etc.)

    I've spent the last 30 minutes trying to find answers through the search with no luck, so sorry if I missed something.
    I recently switched to FIOS from RCN cable in New York.  I've gone through trying to setup my DVR and am running into issues and was hoping for some answers.
    1.  I setup two programs to record at 8PM, I was watching another channel at the time and only half paying attention.  Around 8:02 I noticed a message had popped up asking if I would like to switch channels to start recording.  I was expecting it to force it to switch like my old DVR, but in this case it didn't switch and I missed the first two minutes of one of the shows.  I typically leave my DVR on all day and just turn off the TV, this dual show handling will cause issues with that if I forget to turn off the DVR.  Is there a setting I can change that will force the DVR to choose one of the recording channels?
    2.  I setup all my recordings for "First Run" because I only want to see the new episodes.  One show I setup was The Daily Show on comedy central, which is shown weeknights at 11pm and repeated 3-4 times throughout the day.  My scheduled recordings is showing all these as planned recordings even though only the 11pm show is really "new".  Most of the shows I've setup are once a week so they aren't a problem, but this seems like it will quickly fill my DVR.  Any fixes?
    Thanks for the help.
    Solved!
    Go to Solution.

    I came from RCN about a year ago.  Fios is different in several ways, not all of them desirable.  Here are several ways to get--and fix--unwanted recordings from a series recording setup.
    Some general principles. 
    Saving changes.  When you originally create a series with options, or if you go back to edit the options for an existing series, You MUST save the Series Options changes.  Pretty much everywhere else in the user interface, when you change an option, the change takes effect immediately--but not in Series Options.  Look at the Series Options window.  Look at the far right side.  There is a vertical "Save" bar, which you must navigate to and click OK on to actually save your changes.  Exiting the Series Options window without having first saved your changes loses all your attempted changes--immediately.
    Default Series Options.  This is accessed  from [Menu]--DVR--Settings--Default Series Options.  This will bring up the series options that will automatically be applied to the creation of a NEW series. The options for every previously created series will not be affected by a subsequent modification of the Default Series Options.  You should set these options to the way you would like them to be for the majority of series recordings that you are likely to create.  Be sure to SAVE your changes.  This is what you will get when you select "Create Series Recording" from the Guide.  When creating a new series recording where you think that you may want options different from the default, select "Create Series with Options" instead.  Series Options can always be changed for any individual series set up later--but not for all series at once.
    Non-series recordings.  With Fios you have no directly available options for these.  With RCN and most other DVRs, you can change the start and end times for individual episodes, including individual episodes that are also in a series.  With Fios, your workarounds are to create a series with options for a single program, then delete the series later;  change the series options if the program is already in a series, then undo the changes you made to the series options later; or schedule recordings of the preceding and/or following shows as needed.
    And now, to the unwanted repeats. 
    First, make sure your series options for the specific series in question--and not just the series default options--include "First Run Only".  If not, fix that and SAVE.  Then check you results by viewing the current options using the Series Manager app under the DVR menu.
    Second, and most annoying, the Guide can have repeat programs on your channel tagged as "New".  It happens.  Set the series option "Air Time" to "Selected Time".  To make this work correctly, you must have set up the original series recording after selecting the program in the Guide at the exact time of a first run showing (11pm, in your case), and not on a repeat entry in the Guide.  Then, even it The Daily Show is tagged as New for repeat showings, these will be ignored. 
    Third, another channel may air reruns of the program in your series recording, and the first showing of a rerun episode on the other channel may be tagged as "New".  These can be ignored in your series if you set the series option "Channel" to "Selected Channel".  Related to this, if there is both an SD and HD channel broadcasting you series program, you will record them both if the series option "Duplicates" is set to "Yes".  However, when the Channel option is set to "Selected Channel", the Duplicates Option is always effectively "No", regardless of what shows up on the options screen.  
    As for you missing two minutes,  I have sereral instances in which two programs start recording at the same time.  To the best of my recollection, whenever the warning message has appeared, ignoring it has not caused a loss of recording time.  You might have an older software version.  Newest is v.1.8.  Look at Menu--Settings--System Info.  Or, I might not have noticed the loss of minutes.  I regularly see up to a minute of previous programming at the start of a recording, or a few missing seconds at the beginning or end of a recording.  There are a lot of possibilities for that, but the DVR clock being incorrect is not one of them.  With RCN, the DVR clocks occasionally drifted off by as much as a minute and a half.

  • Pension issue Mid Month Leaving

    Dear All,
    As per rule sustem should deduct mid month joining/leaving/absences or transfer scenarios, the Pension/PF Basis will be correspondingly prorated. But our system is not doing this. In RT table i have found 3FC Pension Basis for Er c 01/2010                    0.00           6,500.00.
    Employee leaving date is 14.04.2010. system is picking pension amout as 541. Last year it was coming right.
    Please suggest.
    Ashwani

    Dear Jayanti,
    We required prorata basis pension in case of left employees and system is not doing this. This is the issue. As per our PF experts Pension amount should come on prorata basis for left employees in case they left mid of month.System is doing prorata basis last year but from this year it is deducting 541. I am giving two RT cases of different years.
    RT table for year 2010. DOL 26.04.2010
    /111 EPF Basis              01/2010                    0.00           8,750.00 
    /139 VPF Basis              01/2010                    0.00           8,750.00 
    /3F1 Ee PF contribution     01/2010                    0.00           1,050.00 
    /3F3 Er PF contribution     01/2010                    0.00             509.00 
    /3F5 Ee Mon PF contribution 01/2010                    0.00           1,050.00 
    /3F6 Ee Ann PF contribution 01/2010                    0.00          12,600.00 
    /3F9 PF adm chrgs * 1,00,00 01/2010                    0.00              96.25 
    /3FA PF basis for Ee contri 01/2010                    0.00           8,750.00 
    /3FB PF Basis for Er Contri 01/2010                    0.00           8,750.00 
    /3FJ VPF basis for Ee contr 01/2010                    0.00           8,750.00 
    /3FL PF Basis for Er Contri 01/2010                    0.00           6,500.00 
    /3F4 Er Pension contributio 01/2010                    0.00             541.00
    /3FC Pension Basis for Er c 01/2010                    0.00           6,500.00
    /3FB PF Basis for Er Contri 01/2010                    0.00           8,750.00
    /3FC Pension Basis for Er c 01/2010                    0.00           6,500.00
    /3FJ VPF basis for Ee contr 01/2010                    0.00           8,750.00
    /3FL PF Basis for Er Contri 01/2010                    0.00           6,500.00
    /3R3 Metro HRA Basis Amount 01/2010                    0.00           8,750.00
    1BAS Basic Salary           01/2010                    0.00           8,750.00
    RT table for year 2009. DOL 27.10.2009
                                                                                    /111 EPF Basis              07/2009                    0.00           9,016.13
    /139 VPF Basis              07/2009                    0.00           9,016.13
    /3F1 Ee PF contribution     07/2009                    0.00           1,082.00
    /3F3 Er PF contribution     07/2009                    0.00             628.00
    /3F5 Ee Mon PF contribution 07/2009                    0.00           1,082.00
    /3F6 Ee Ann PF contribution 07/2009                    0.00           8,822.00
    /3F9 PF adm chrgs * 1,00,00 07/2009                    0.00              99.18
    /3FA PF basis for Ee contri 07/2009                    0.00           9,016.00
    /3FB PF Basis for Er Contri 07/2009                    0.00           9,016.00
    /3FJ VPF basis for Ee contr 07/2009                    0.00           9,016.00
    /3FL PF Basis for Er Contri 07/2009                    0.00           5,452.00
    /3FB PF Basis for Er Contri 07/2009                    0.00           9,016.00 
    /3FC Pension Basis for Er c 07/2009                    0.00           5,452.00 
    /3FJ VPF basis for Ee contr 07/2009                    0.00           9,016.00 
    /3FL PF Basis for Er Contri 07/2009                    0.00           5,452.00 
    /3R4 Non-metro HRA Basis Am 07/2009                    0.00           9,016.13 
    1BAS Basic Salary           07/2009                    0.00           9,016.13 
    Now please suggest what to do. where is the problem  ? If have also checked EXIT_HINCALC0_002 but nothing written in it.
    With Regards
    Ashwani

  • Open PO Analysis - BW report issue

    Hello Friends
    I constructed a query in BW in order to show Open Purchase Orders. We have custom DSO populated with standard
    datasource 2lis_02_itm (Purcahse Order Item). In this DSO we mapped the field ELIKZ to the infoobject 0COMP_DEL
    (Delivery completed).
    We loaded the data from ECC system for all POs and found the following issue for Stock Transport Purchase orders (DocType = UB).
    We have a PO with 4 line items. For line items 10 and 20, Goods issued, Goods received and both the flags "Delivery
    complete" and "Final delivery" checked. For line items 30 and 40, only delivery indicator note is issued for zero
    quantity and Delivery complete flag is checked (Final delivery flag is not checked) in ECC system. For this PO, the
    delivery completion indicator is not properly updated in the DSO for line items 30 and 40. The data looks like the
    following:
    DOC_NUM     DOC_ITEM       DOCTYPE     COMP_DEL
    650000001       10     UB        X
    650000001       20     UB        X
    650000001       30     UB
    650000001       40     UB      
    When we run the Open PO analysis report on BW side this PO is appearing in the report but the same is closed in ECC
    system.
    Any help is appreciated in this regard.
    Thanks and Regards
    sampath

    Hi Priya and Reddy
       Thanks for your response.
                         Yes the indicator is checked in EKPO table for items 30 and 40 and delta is running regularly for more than 1 year and no issues with other POs. This is happening only for few POs of type Stock Transport (UB).
                        I already checked the changes in ME23N and the Delivery completed indicator was changed and it reflected in EKPO table. Further, i checked the PSA records for this PO and i am getting the records with the Delivery completed flag but when i update from PSA to DSO the delivery completed indicator is not updating properly.
                       In PSA, for item 30 i have the following entries. Record number 42 is capturing the value X for ELIKZ but after that i am getting two more records 43 and 44 with process key 10 and without X for ELIKZ. I think this is causing the problem.
    Record No.    Doc.No.                    Item              Processkey         Rocancel     Elikz
        41               6500000001            30                    11                            X           ---    
        42               6500000001            30                    11                            ---           X
        43               6500000001            30                    10                            X           ---
        44               6500000001            30                    10                            ---         ---
    (Here --- means blank)        
    Thanks and Regards
    sampath

  • HP LaserJet Enterprise 600 M602 driver issue

    Hello,
    I've got issue with 600-series printers. We use the latest UPD drivrer ver. 61.175.1.18849 and print from XenApp 6.5. The error occurs every time when users try to print jpg files from XenApp session. It only happens with 600 series printers and UPD.
    Also I've tried to assign native 600-series driver ver. 6.3.9600.16384 and it works good. But with that driver system says that it's color printer and it brokes our printing reports. These reports are very important for us. So we can't use printer and that driver as well.
    Printer installed on Windows Server 2012 R2. All clients are Windows 7 x64. XenApp Servers are Server 2008R2.
    Is it possible to get fixed UPD driver or correct native driver for Server 2012 R2?
    Regards,
    Anatoly

    I am sorry, but to get your issue more exposure I would suggest posting it in the commercial forums since this is a commercial printer. You can do this at Printers - LaserJet.
    Click on New Post.
    I hope this helps.
    Please click “Accept as Solution ” if you feel my post solved your issue, it will help others find the solution.
    Click the “Kudos Thumbs Up" on the right to say “Thanks” for helping!
    Gemini02
    I work on behalf of HP

  • Windows 7 displays error message when exiting +cursor issue

    Two issues here. CS5 Phoshop on Wind 7 64 bit.
    Physical processor count: 8
    Processor speed: 3073 MHz
    Built-in memory: 12279 MB
    Free memory: 9577 MB
    Memory available to Photoshop: 10934 MB
    Memory used by Photoshop: 80 %
    Image tile size: 128K
    First issue is since the latest automatic Adobe update (why fix what isn't broken?) Every time I now exit Photoshop I get the message "Adobe QT Server has stoped working" and occasionally it happens when I exit bridge. Indesign is also behaving badly. I can no longer start a previous document from file manager without ID crashing out.
    The other is the cursors in Clone and erase lose their edge (become invisable) for no reason - well not quite. Noise Ninja crashed Photoshop when I tried to use it. I reinstalled it and all is well. The cursor issue seems to be intermittant but came back (for no reason) after I reinstalled NN. I can't seem to change the cursor, no matter what I do. The problem is now seriously affecting how I work. Almost enough to go back to Win XP which ran CS5 Photoshop flawlessly.
    Any help will be gratefully accepted.
    Doug

    function(){return A.apply(null,[this].concat($A(arguments)))}
    doug87510 wrote:
    The recent problem is the entire outline of the cursor (including the crosshair in the middle) was missing at any size of cursor. All I had was exactly what I'd get if I used a real spraygun.
    Well, that issue is simply a matter of hitting the Caps Lock key.  When Caps Lock is on, you'll see the cursor outline, and when it is off you'll see a crosshair.  That's a feature, not a bug.
    Glad to hear the 11.1 drivers are out.  I will download them and try them now myself.
    Regarding "Adobe QT" crashing...  QT brings to mind QuickTime, though that is Apple, not Adobe.  Do you have Apple QuickTime installed?
    Regarding memory usage, with 12 GB of installed RAM, you should be able to set Photoshop to use 90% or more in Edit - Preferences - Performance.
    -Noel

  • Issue in Creation of Periodicals for Contracts in CRM7.0

    Hello,
    I have a requirement to create Contracts in CRM7.0 system.
    And I am doing this using the BAPI *BAPI_BUSPROCESSND_CREATEMULTI*
    Good part is Contract Order gets created, but onlywith Header Details.
    The issues i am facing --
    1. I need to know what kind/type of data must be passed to the interface parameters, the F1 Help/Documentation is vague.
    2. I am passing data in the INPUT FIELDS structure with the Object ID, Handle Number, Reference GUID and Fieldname,
        here what does 'Logical Key' field indicate? What should be passed here.
        What does 'REFERENCE KIND' field indicate, i have been passng 'A' for everything (to be frank i dont know whats its significance is!!).
    3. With so much, My Order gets created but with less than half details, i.e. the Objects not getting created are -  Partner, Product, terms/appointments, Status, LongTexts......
    Any help/inputs would be appreciated.
    Hope my problem is stated clearly ...
    --Regards
    Dedeepya

    Hi Anu,
    i found my solution by debugging with existing data or while creating it in CRMD_ORDER.
    Ensure that you are passing a correct entry in INPUT_FIELDS structure.
    As i haven't worked on rebates i woudlnt be able to help you, I suggest you debug to arrive at a solution.
    You can preset your break-points at :-
    1. FM - CRM_ORDER_MAINTAIN
    2. CRM_ORDER_MAINTAIN_MULTI_OW -- Debug through the complete FM.
    3. CRM_ORDER_PREPARE_MULTI_OW -- The data is set in this function module.
    Regards
    Dedeepya C

  • Issue in creation of plant related data at receiving server using BD10

    Hi all,
    This is regarding Material master creation using B10.I am using MATMAS05 message type for sending data from one system to another.Data is sent and received successfully.When i go in mm03 i can see all the views created successfully accept views related to PLANT.Please guide to resolve the issue.
    When i entered into Log-
    1)"The field MBEW-BKLAS is defined as a required field; it does not contain an entry".
    2)"No material master data exists for material AB_08.04.09(30) in plant 4001".
    My segemnt is as follows-
    ZMATMAS05                      matmas05
           E1MARAM                        Master material general data (MARA)
               Z1KLART                        KLART----
    My extention
               E1MARA1                        Additional Fields for E1MARAM
               E1MAKTM                        Master material short texts (MAKT)
               E1MARCM                        Master material C segment (MARC)
                   Z1AUSPM                        E1AUSPMDistribution of Classification:----
    My extention
                   E1MARC1                        Additional Fields for E1MARCM
                   E1MARDM                        Master material warehouse/batch segment (MARD)
                   E1MFHMM                        Master material production resource/tool (MFHM)
                   E1MPGDM                        Master material product group
                   E1MPOPM                        Master material forecast parameter
                   E1MPRWM                        Master material forecast value
                   E1MVEGM                        Master material total consumption
                   E1MVEUM                        Master material unplanned consumption
                   E1MKALM                        Master material production version
               E1MARMM                        Master material units of measure (MARM)
               E1MBEWM                        Master material material valuation (MBEW)
               E1MLGNM                        Master material material data per warehouse number (MLGN)
               E1MVKEM                        Master material sales data (MVKE)
               E1MLANM                        Master material tax classification (MLAN)
               E1MTXHM                        Master material long text header
               E1CUCFG                        CU: Configuration data
           E1UPSLINK                      Reference from Object to Superior UPS
    Thanks.
    Edited by: sanu debu on Apr 27, 2009 7:10 PM

    CREATE CONTROLFILE SET DATABASE "NEWDB" NORESETLOGS ARCHIVELOGAlso when you are setting a new database, the option should be RESETLOGS and not NORESETLOGS.
    'D:\APP\ADMINISTRATOR\ORADATA\NEWDB\ONLINELOG\O1_MF_2_7FK0XKB8_.LOG
    D:\APP\ADMINISTRATOR\ORADATA\NEWDB\DATAFILE\O1_MF_SYSTEM_7FK0SKN0_.DBFWhy underscore(_) at the end of the datafile name. Any specific reason ?

  • Issue in Creation of new Value Field in CO-PA

    Hi,
    I have a query in CO-PA Value Field Linking.
    In my Development Client,
    1. Created a New Value Field (No Transport Request Generated)
    2. Linked to the above to new Conditon type created in SD. (Tranport request was generated) i.e. in Flow of Actual Values->Transfer of Billing Documents->Assign Value Fields
    However then i try creating a new Value Field in my Production Client it throws a message 'You have no authorization to change Fields".
    Is this an issue with authorization or i need to transport the Value field too from Development to Production client.
    Please Advise.
    Thanks in Advance,
    Safi

    Thanks Phaneendra for the response.
    The creation of Value field did not create any tranportation request. Will this too be transported if i transport the Operating Concern.
    Please Advise.
    Thanks,
    Safi

  • Issue of Free Goods

    Dear All
    I have some is my current assignment-Customer is buying some material say "A" want "B,C" as exclusive free goods
    is it possible to give two free at a time in same order ?
    I only know one exlusive free good can be give to one material with combination of customer ( Customer/Material)
    Looking for some inputs regarding the issue.
    Can you plz suggest me if there is any possiblities for BOM?
    Many Thanks
    Rakesh Naveen

    Dear Rakesh,
    Be informed that free goods is not currently supported in combination with material structures (e.g. product selection,     
    bills of material, variants with BOM explosion), see note 796926.   
    Determination of free goods is performed in include FV45PF0N_NATRAB_SELECTION and the check is hardcoded. You will have to modify the program to get that functionality, but be carfull that any modification won't be supported by SAP, see note 170183.                
    I hope it can help you.
    Ruy Castro

  • Issue in creation of control cycle

    Dear Gurus,
    During creation of control cycle (LPK1), the fields for source information is not appearing in my system.
    I compared control cycle in a different ECC system where source information is appearing.
    How can make the screen appear in my ECC system.
    Please find the screenshots.
    Any pointers will be highly appreciated.
    This thread is further to the threads in Production Planning and LE/WM Forum. I could not resolve the issue with the threads.
    Hope that I will get any pointer in EWM forum.
    http://scn.sap.com/thread/3609441
    http://scn.sap.com/thread/3610822
    With Regards,
    Malay

    Hello Malay,
    Can first contact your ABAPer and ensure the bottom screen is not an Screen Enhancement?
    If it is a some custom development, your ABAPer can help you on the logic behind it.
    Else, Let us know.
    Regards,
    Sathish

  • Issue in Creation of XML file from ABAP data

    Hi,
    I need to create a XML file, but am not facing some issues in creation of XML file, the in the required format.
    The required format is
    -<Header1 1st field= u201CValueu201D 2nd field= u201CValueu201D>
       - <Header2 1st field= u201CValueu201D 2nd field= u201CValueu201Du2026u2026. Upto 10 fields>
              <Header3 1st field= u201CValueu201D 2nd field= u201CValueu201Du2026u2026. Upto 6 fields/>
              <Header4  1st field= u201CValueu201D 2nd field= u201CValueu201Du2026u2026. Upto 4 fields/.>
               <Header5 1st field= u201CValueu201D 2nd field= u201CValueu201Du2026u2026. Upto 6 fields/>
          </Header2>
       </Header1>
    Iu2019m using the call transformation to convert ABAP data to XML file.
    So please anybody can help how to define XML structure in transaction XSLT_TOOL.
    And one more thing, here I need to put the condition to display the Header 3, Header 4, Header 5 values. If there is no record for a particular line item in header 3, 4 & 5, I donu2019t want to display full line items; this is only for Header 3, 4 & 5.
    Please help me in this to get it resolved.

    Hello,
    you can use CALL TRANSFORMATION id, which will create a exact "print" of the ABAP data into the XML.
    If you need to change the structure of XML, you can alter your ABAP structure to match the requirements.
    Of course you can create your own XSLT but that is not that easy to describe and nobody will do that for you around here. If you would like to start with XSLT, you´d better start the search.
    Regards Otto

  • Issues with Creative Cloud for teams deployment workflow

    The Adobe Creative Cloud for teams IT Deployment Guide lists out steps for IT admins to deploy the CS6 applications and then have their end-users license the trial software with their Adobe IDs once they have been invited to the team. There are two major issues with this document.
    First, the media that is on the FTP is not for North American English. We are working to get that posted on the FTP site ASAP. In the meantime, you can find the CS6 MC media from: http://www.adobe.com/downloads/
    [Note: Getting media from that page requires the use of the Adobe Download Assistant which is very consumer focused. Sorry about that.]
    Second, in order to have the ability to login properly with a Creative Cloud for Teams account the system needs to have the latest copy of Adobe Application Manager installed. If you do not do this step the end user will be prompted for a serial number.
    Unfortunately the Adobe Application Manager can’t be packaged with AAMEE nor is it a native installer. I know, I know! Here are the links to the Adobe Application Manager installers:
    Windows: http://www.adobe.com/support/downloads/detail.jsp?ftpID=4773
    Mac: http://www.adobe.com/support/downloads/detail.jsp?ftpID=4774
    It can be installed from command line by:
    Win: <Path to Setup.exe>Set-up.exe –mode=silent –action=install
    Mac: <path to ASU> /ASU/Install.app/Contents/MacOS/Install –mode=silent –action=install
    Jody Rodgers | Sr. Product Manager | Creative Cloud for Enterprise | Adobe Systems

    Hi Boncker,
    I see that you have an active Subscription under your account . Please launch any of the installed product and when you get the trial prompt , please click on License this software and then Enter the Adobe Id & Password for the account that you have accepted the invite .
    Please do let us know if that worked for you or not .
    Cheers,
    Kartikay Sharma

  • Adobe Creative Cloud Enterprise Deployment Issues using SCCM 2012 R2

    Hi,
    I have been trying to deploy Adobe Creative Cloud Enterprise to Windows 8.1 machines that are identical, using SCCM 2012 R2.
    The Adobe package seems fine, because it seems to deploy successfully to some machines. And SCCM 2012 R2 has been configured correctly, as I can deploy other software using it, and again, it deploys Adobe CC successfully to some of the machines.
    I have tried comparing the package that is downloaded on the test machine/client machine, with the original package on the distribution point, using Beyond Compare, and there are no differences.
    I have contacted Adobe Enterprise Support, and they asked me to send to them log files from Event Viewer, the msi installer, and other Adobe logs, from the machine that failed the deployment. However, after Adobe studying them, they told me that they could not identify any problems... Strange, because I could have sworn that I saw error 1603 pop up over 20 times on different machines indicating that the 'Set-up.dat' file had a problem with it.
    After all the testing on over 20 identical machines (same hardware/same software), using different configurations on SCCM 2012 R2 and the client machines, I still can't seem to have a reliable solution to deploying Adobe CC.
    The fact that it deploys successfully on one machine and fails on another, or sometimes deploy to two machines and fail on another (simultaneously), is something that I don't understand.
    Another thing is that, if I retry the deployment 10-15 times after it failed the first time, it might go through...
    Adobe Enterprise Support asked me if they could remote into a machine that failed the deployment to have a look at it and I agreed to that option, but it seems like my issue has been ignored because they never got back to me.
    Has anyone had this kind of problem or anything similar before?
    I need to be able to deploy this remotely to 100+ machines. So installing manually is not an option.
    Any help is appreciated.
    This was posted in the wrong section a few days ago. I'm hoping I can get some help here.
    Case Number: 1862659812
    UPDATE: I spoke to Adobe Customer Support and after 1.5 hours on the phone with a remote session going on, problem was still not solved or identified. Additional log files have been sent and now I'm waiting for a call back.

    Hi Robert,
    We seem to be having a very similar issue.  Our installs would randomly fail with error code 1603 and an error message about a fault in Set-up.dat.  Failure rate was near 95% on our 900 machines.  Adobe Support and Karl having been looking into our issues but so far no solution has been found.
    Having done a lot of investigating we've managed to deploy our package using a schedule task running as a domain admin.  This is a nasty solution and we don't intend on using this permanently, but we needed to get the package out.
    Are you seeing any of the following:
    Entries in PDApp.log:
    [FATAL] |  | ASU | DeploymentManager | DeploymentManager |  |  | 2900 | The Bootstrapper Process is (5).Stopping the installation process.
    [FATAL] |  | ASU | DeploymentManager | DeploymentManager |  |  | 2900 | The return code from the Adobe Installer Process is (33).Stopping the uninstallation process.
    [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 2900 | Failed to find the pdb database.
    [WARN] |  | ASU | DeploymentManager | DeploymentManager |  |  | 2900 | Failed to get the local payload database handle.
    Event Log:
    Faulting application name: Set-up.dat, version: 2.9.1.474, time stamp: 0x54e11f94
    Faulting module name: Set-up.dat, version: 2.9.1.474, time stamp: 0x54e11f94
    Exception code: 0xc0000005
    Fault offset: 0x000d7c52
    Faulting process id: 0xb40
    Faulting application start time: 0x01d072a073861622
    Faulting application path: \\server.name.path\Adobe CC\FullPackage\Build\ASU\Set-up.dat
    Faulting module path: \\server.name.path\Adobe CC\FullPackage\Build\ASU\Set-up.dat
    Report Id: c86d9216-de93-11e4-8284-782bcb99e284
    Faulting package full name:
    Faulting package-relative application ID:
    Installer Log
    Indicates it can't find the Media_db.  We noticed that the folder C:\Program Files (x86)\Common Files\Adobe\caps doesn't get created on the machines were the install fails, so error message is correct in that there isn't a Media_db.db.  Sysinterals Process Monitor seems to show that the setup tried to create the folder/files but they don't actually get created.  Copying a Media_db into the folder from another machine seems to allow the installation to almost finish, but unsurprisingly you end up with problems later on.

  • Cannot send email from my iPhone or iPad. The server rejects a recepient for no apparent reason.  The recipient is not new.  This issue happens on reply or reply to all or froward; not a new email. What is happening?

    Cannot send email from my iPhone or iPad. The server rejects a recepient for no apparent reason.  The recipient is not new.  This issue happens on reply or reply to all or froward; not a new email to the same recepient. What is happening?

    I talked with a tech today and he said I cloud is having problems which should be resolved shortly.
    In the mean time I used the .me smtp server settings which allowed me to send mail.

Maybe you are looking for

  • How to Carry Forward Beginning Balances for CTA

    Hi Experts, We're doing a multi-currency AppSet wherein I need to carry forward the ending balances of the cumulative translation adjustment to it's beginning balance the next year but the problem is: 1. CTA resides only in USD reporting currency(not

  • Satellite X200: The cloned image on my TV is out of scale

    Ive connected my x200 laptop to my plasma TV through a HDMI cable. After much deliberation I managed to figure out how to get the sound working through the TV. However the image which appears on the TV is slightly out of scale. i.e. the image on the

  • How to get the client identity from the certificate at server side

    hi, this is ravi kiran, I am working on a project which requires, receiving a signed file from the client side and verify whether the file is signed by a valid certificate that is there in the servers keystore. How can i get the client certificate at

  • How to install Oracle 9i database ?

    Hi all, There are three folders named disk1, disk2 and disk3 given , and I want to know how to install Oracle 9i in a windows XP system ? Thank you very much indeed.

  • Billing index-VKDFS table

    Hi, we have put a break point in include V05IEXIT  for modyfying the above table VKDFS. but while creating invoices in background mode in VF04, the system is not coming to this include V05IEXIT in debugging mode. we have to modify VKDFS-KUNNR what to