Whats difference between dba_segments in 10g and 11.2

Hi Everyone,
The Space related Queries on DBA_SEGMENTS on 10g is running for more than 10 minutes and the same queries running within 2 seconds 11.2 for same database..
Please some one can explain the differences between 10g and 11.2 on this and is there any improvements in LMT tablespaces in 11.2 because this is issue related to LMT.
Thanks
Vijay

*10.2.0.4*
SQL> explain plan for
  2  select owner owner, segment_name segment, a.tablespace_name name, a.next_extent next_extent, a.next_extent/1024/1024 MB, sum(floor(b.bytes/a.next_extent)) avail_extents from dba_SEGMENTS a, dba_FREE_SPACE b where a.tablespace_name = b.tablespace_name   and a.next_extent>0 group by owner, segment_name,a.tablespace_name, a.next_extent having sum(floor(b.bytes/a.next_extent)) < 8 order by 3,6;
Explained.
Elapsed: 00:00:00.45
SQL> select * from table(dbms_xplan.display());
PLAN_TABLE_OUTPUT
Plan hash value: 3420003334
| Id  | Operation                           | Name             | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT                    |                  |    42 |  4998 | 20360  (91)| 00:03:37 |
|   1 |  SORT ORDER BY                      |                  |    42 |  4998 | 20360  (91)| 00:03:37 |
|*  2 |   FILTER                            |                  |       |       |            |          |
|   3 |    HASH GROUP BY                    |                  |    42 |  4998 | 20360  (91)| 00:03:37 |
|*  4 |     HASH JOIN                       |                  |    42 |  4998 | 20358  (91)| 00:03:37 |
|   5 |      VIEW                           | SYS_DBA_SEGS     |     3 |   267 |  1520   (1)| 00:00:17 |
|   6 |       UNION-ALL                     |                  |       |       |            |          |
|   7 |        NESTED LOOPS OUTER           |                  |     1 |   291 |  1322   (1)| 00:00:15 |
|   8 |         NESTED LOOPS                |                  |     1 |   261 |  1321   (1)| 00:00:15 |
|   9 |          NESTED LOOPS               |                  |     1 |   205 |  1320   (1)| 00:00:15 |
|* 10 |           HASH JOIN                 |                  |     4 |   596 |  1319   (1)| 00:00:15 |
|  11 |            NESTED LOOPS             |                  |    19 |  1729 |   156   (0)| 00:00:02 |
|  12 |             TABLE ACCESS FULL       | FILE$            |    77 |  2002 |     2   (0)| 00:00:01 |
|  13 |             TABLE ACCESS CLUSTER    | SEG$             |     1 |    65 |     2   (0)| 00:00:01 |
|* 14 |              INDEX RANGE SCAN       | I_FILE#_BLOCK#   |    15 |       |     1   (0)| 00:00:01 |
|  15 |            VIEW                     | SYS_OBJECTS      | 30274 |  1714K|  1162   (1)| 00:00:13 |
|  16 |             UNION-ALL               |                  |       |       |            |          |
|* 17 |              TABLE ACCESS FULL      | TAB$             |  3109 |   197K|   272   (1)| 00:00:03 |
|  18 |              TABLE ACCESS FULL      | TABPART$         |   354 | 18408 |     3   (0)| 00:00:01 |
|  19 |              TABLE ACCESS FULL      | CLU$             |    65 |  3380 |   272   (1)| 00:00:03 |
|* 20 |              TABLE ACCESS FULL      | IND$             |  7364 |   467K|   272   (1)| 00:00:03 |
|  21 |              TABLE ACCESS FULL      | INDPART$         |   970 | 50440 |     5   (0)| 00:00:01 |
|* 22 |              TABLE ACCESS FULL      | LOB$             |  1997 |   126K|   272   (1)| 00:00:03 |
|  23 |              TABLE ACCESS FULL      | TABSUBPART$      |  1000 | 52000 |     6   (0)| 00:00:01 |
|  24 |              TABLE ACCESS FULL      | INDSUBPART$      | 15382 |   781K|    58   (2)| 00:00:01 |
|  25 |              TABLE ACCESS FULL      | LOBFRAG$         |    33 |  1782 |     2   (0)| 00:00:01 |
|* 26 |           TABLE ACCESS CLUSTER      | TS$              |     1 |    56 |     1   (0)| 00:00:01 |
|* 27 |            INDEX UNIQUE SCAN        | I_TS#            |     1 |       |     0   (0)| 00:00:01 |
|* 28 |          TABLE ACCESS BY INDEX ROWID| OBJ$             |     1 |    56 |     1   (0)| 00:00:01 |
|* 29 |           INDEX UNIQUE SCAN         | I_OBJ1           |     1 |       |     0   (0)| 00:00:01 |
|  30 |         TABLE ACCESS CLUSTER        | USER$            |     1 |    30 |     1   (0)| 00:00:01 |
|* 31 |          INDEX UNIQUE SCAN          | I_USER#          |     1 |       |     0   (0)| 00:00:01 |
|  32 |        NESTED LOOPS                 |                  |     1 |   246 |    75   (0)| 00:00:01 |
|  33 |         NESTED LOOPS OUTER          |                  |     1 |   203 |    74   (0)| 00:00:01 |
|  34 |          NESTED LOOPS               |                  |     1 |   173 |    73   (0)| 00:00:01 |
|  35 |           NESTED LOOPS              |                  |    71 |  6745 |     2   (0)| 00:00:01 |
|* 36 |            TABLE ACCESS FULL        | UNDO$            |    76 |  5244 |     2   (0)| 00:00:01 |
|* 37 |            INDEX UNIQUE SCAN        | I_FILE2          |     1 |    26 |     0   (0)| 00:00:01 |
|* 38 |           TABLE ACCESS CLUSTER      | SEG$             |     1 |    78 |     1   (0)| 00:00:01 |
|* 39 |            INDEX UNIQUE SCAN        | I_FILE#_BLOCK#   |     1 |       |     0   (0)| 00:00:01 |
|  40 |          TABLE ACCESS CLUSTER       | USER$            |     1 |    30 |     1   (0)| 00:00:01 |
|* 41 |           INDEX UNIQUE SCAN         | I_USER#          |     1 |       |     0   (0)| 00:00:01 |
|* 42 |         TABLE ACCESS CLUSTER        | TS$              |     1 |    43 |     1   (0)| 00:00:01 |
|* 43 |          INDEX UNIQUE SCAN          | I_TS#            |     1 |       |     0   (0)| 00:00:01 |
|  44 |        NESTED LOOPS                 |                  |     1 |   203 |   123   (0)| 00:00:02 |
|  45 |         NESTED LOOPS OUTER          |                  |     1 |   147 |   122   (0)| 00:00:02 |
|  46 |          NESTED LOOPS               |                  |     1 |   117 |   121   (0)| 00:00:02 |
|  47 |           TABLE ACCESS FULL         | FILE$            |    77 |  3003 |     2   (0)| 00:00:01 |
|* 48 |           TABLE ACCESS CLUSTER      | SEG$             |     1 |    78 |     2   (0)| 00:00:01 |
|* 49 |            INDEX RANGE SCAN         | I_FILE#_BLOCK#   |    15 |       |     1   (0)| 00:00:01 |
|  50 |          TABLE ACCESS CLUSTER       | USER$            |     1 |    30 |     1   (0)| 00:00:01 |
|* 51 |           INDEX UNIQUE SCAN         | I_USER#          |     1 |       |     0   (0)| 00:00:01 |
|* 52 |         TABLE ACCESS CLUSTER        | TS$              |     1 |    56 |     1   (0)| 00:00:01 |
|* 53 |          INDEX UNIQUE SCAN          | I_TS#            |     1 |       |     0   (0)| 00:00:01 |
|  54 |      VIEW                           | DBA_FREE_SPACE   |  1393 | 41790 | 18837  (99)| 00:03:21 |
|  55 |       UNION-ALL                     |                  |       |       |            |          |
|  56 |        NESTED LOOPS                 |                  |     1 |   121 |    11   (0)| 00:00:01 |
|  57 |         NESTED LOOPS                |                  |     1 |    65 |    10   (0)| 00:00:01 |
|  58 |          TABLE ACCESS FULL          | FET$             |     1 |    39 |    10   (0)| 00:00:01 |
|* 59 |          INDEX UNIQUE SCAN          | I_FILE2          |     1 |    26 |     0   (0)| 00:00:01 |
|* 60 |         TABLE ACCESS CLUSTER        | TS$              |     1 |    56 |     1   (0)| 00:00:01 |
|  61 |        NESTED LOOPS                 |                  |  1377 |   158K|    58  (83)| 00:00:01 |
|  62 |         NESTED LOOPS                |                  | 72400 |  6504K|    41  (76)| 00:00:01 |
|* 63 |          TABLE ACCESS FULL          | TS$              |    54 |  4428 |    10   (0)| 00:00:01 |
|* 64 |          FIXED TABLE FIXED INDEX    | X$KTFBFE (ind:1) |  1342 | 13420 |     1 (100)| 00:00:01 |
|* 65 |         INDEX UNIQUE SCAN           | I_FILE2          |     1 |    26 |     0   (0)| 00:00:01 |
|  66 |        NESTED LOOPS                 |                  |    14 |  2324 | 18498 (100)| 00:03:18 |
|  67 |         NESTED LOOPS                |                  |   640 | 89600 | 18498 (100)| 00:03:18 |
|* 68 |          HASH JOIN                  |                  |   640 | 77440 |    59   (2)| 00:00:01 |
|  69 |           TABLE ACCESS FULL         | RECYCLEBIN$      |   651 | 25389 |    48   (0)| 00:00:01 |
|* 70 |           TABLE ACCESS FULL         | TS$              |    54 |  4428 |    10   (0)| 00:00:01 |
|* 71 |          FIXED TABLE FIXED INDEX    | X$KTFBUE (ind:1) |     1 |    19 |    29 (100)| 00:00:01 |
|* 72 |         INDEX UNIQUE SCAN           | I_FILE2          |     1 |    26 |     0   (0)| 00:00:01 |
|* 73 |        HASH JOIN                    |                  |     1 |   173 |   270   (1)| 00:00:03 |
|  74 |         NESTED LOOPS                |                  |     1 |   134 |   221   (1)| 00:00:03 |
|  75 |          NESTED LOOPS               |                  |     1 |    78 |   220   (1)| 00:00:03 |
|  76 |           TABLE ACCESS FULL         | UET$             |     1 |    52 |   220   (1)| 00:00:03 |
|* 77 |           INDEX UNIQUE SCAN         | I_FILE2          |     1 |    26 |     0   (0)| 00:00:01 |
|* 78 |          TABLE ACCESS CLUSTER       | TS$              |     1 |    56 |     1   (0)| 00:00:01 |
|* 79 |           INDEX UNIQUE SCAN         | I_TS#            |     1 |       |     0   (0)| 00:00:01 |
|  80 |         TABLE ACCESS FULL           | RECYCLEBIN$      |   651 | 25389 |    48   (0)| 00:00:01 |
Predicate Information (identified by operation id):
   2 - filter(SUM(FLOOR("B"."BYTES"/"NEXT_EXTENT"))<8)
   4 - access("TABLESPACE_NAME"="B"."TABLESPACE_NAME")
  10 - access("S"."FILE#"="SO"."HEADER_FILE" AND "S"."BLOCK#"="SO"."HEADER_BLOCK" AND
              "S"."TS#"="SO"."TS_NUMBER" AND "S"."TYPE#"="SO"."SEGMENT_TYPE_ID")
  14 - access("S"."TS#"="F"."TS#" AND "S"."FILE#"="F"."RELFILE#")
  17 - filter(BITAND("T"."PROPERTY",1024)=0)
  20 - filter("I"."TYPE#"=1 OR "I"."TYPE#"=2 OR "I"."TYPE#"=3 OR "I"."TYPE#"=4 OR "I"."TYPE#"=6
              OR "I"."TYPE#"=7 OR "I"."TYPE#"=8 OR "I"."TYPE#"=9)
  22 - filter(BITAND("L"."PROPERTY",64)=0 OR BITAND("L"."PROPERTY",128)=128)
  26 - filter(DECODE(BITAND("TS"."FLAGS",3),1,TO_NUMBER(NULL),"S"."EXTSIZE"*"TS"."BLOCKSIZE")>0)
  27 - access("S"."TS#"="TS"."TS#")
  28 - filter("O"."TYPE#"="SO"."OBJECT_TYPE_ID")
  29 - access("O"."OBJ#"="SO"."OBJECT_ID")
  31 - access("O"."OWNER#"="U"."USER#"(+))
  36 - filter("UN"."STATUS$"<>1)
  37 - access("UN"."TS#"="F"."TS#" AND "UN"."FILE#"="F"."RELFILE#")
  38 - filter("S"."TYPE#"=1 OR "S"."TYPE#"=10)
  39 - access("S"."TS#"="UN"."TS#" AND "S"."FILE#"="UN"."FILE#" AND "S"."BLOCK#"="UN"."BLOCK#")
  41 - access("S"."USER#"="U"."USER#"(+))
  42 - filter("S"."EXTSIZE"*"TS"."BLOCKSIZE">0)
  43 - access("S"."TS#"="TS"."TS#")
  48 - filter("S"."TYPE#"<>1 AND "S"."TYPE#"<>5 AND "S"."TYPE#"<>6 AND "S"."TYPE#"<>8 AND
              "S"."TYPE#"<>10)
  49 - access("S"."TS#"="F"."TS#" AND "S"."FILE#"="F"."RELFILE#")
  51 - access("S"."USER#"="U"."USER#"(+))
  52 - filter(DECODE(BITAND("TS"."FLAGS",3),1,TO_NUMBER(NULL),"S"."EXTSIZE"*"TS"."BLOCKSIZE")>0)
  53 - access("S"."TS#"="TS"."TS#")
  59 - access("F"."TS#"="FI"."TS#" AND "F"."FILE#"="FI"."RELFILE#")
  60 - filter("TS"."BITMAPPED"=0 AND "TS"."TS#"="F"."TS#")
  63 - filter(("TS"."ONLINE$"=1 OR "TS"."ONLINE$"=4) AND "TS"."CONTENTS$"=0 AND
              "TS"."BITMAPPED"<>0)
  64 - filter("TS"."TS#"="F"."KTFBFETSN")
  65 - access("F"."KTFBFETSN"="FI"."TS#" AND "F"."KTFBFEFNO"="FI"."RELFILE#")
  68 - access("TS"."TS#"="RB"."TS#")
  70 - filter(("TS"."ONLINE$"=1 OR "TS"."ONLINE$"=4) AND "TS"."CONTENTS$"=0 AND
              "TS"."BITMAPPED"<>0)
  71 - filter("U"."KTFBUESEGTSN"="RB"."TS#" AND "U"."KTFBUESEGFNO"="RB"."FILE#" AND
              "U"."KTFBUESEGBNO"="RB"."BLOCK#")
  72 - access("RB"."TS#"="FI"."TS#" AND "U"."KTFBUEFNO"="FI"."RELFILE#")
  73 - access("U"."TS#"="RB"."TS#" AND "U"."SEGFILE#"="RB"."FILE#" AND
              "U"."SEGBLOCK#"="RB"."BLOCK#")
  77 - access("U"."TS#"="FI"."TS#" AND "U"."SEGFILE#"="FI"."RELFILE#")
  78 - filter("TS"."BITMAPPED"=0)
  79 - access("TS"."TS#"="U"."TS#")
11.2
SQL> explain plan for
  2   select owner owner, segment_name segment, a.tablespace_name name, a.next_extent next_extent, a.next_extent/1024/1024 MB, sum(floor(b.bytes/a.next_extent)) avail_extents from dba_SEGMENTS a, dba_FREE_SPACE b where a.tablespace_name = b.tablespace_name   and a.next_extent>0 group by owner, segment_name,a.tablespace_name, a.next_extent having sum(floor(b.bytes/a.next_extent)) < 8 order by 3,6;
Explained.
SQL>  select * from table(dbms_xplan.display());
PLAN_TABLE_OUTPUT
Plan hash value: 1346760999
| Id  | Operation                            | Name             | Rows  | Bytes | Cost (%CPU)| Time     |
|   0 | SELECT STATEMENT                     |                  |     3 |   333 |  1481   (1)| 00:00:27 |
|   1 |  SORT ORDER BY                       |                  |     3 |   333 |  1481   (1)| 00:00:27 |
|*  2 |   FILTER                             |                  |       |       |            |          |
|   3 |    HASH GROUP BY                     |                  |     3 |   333 |  1481   (1)| 00:00:27 |
|*  4 |     HASH JOIN                        |                  |  8243 |   893K|  1479   (1)| 00:00:27 |
|   5 |      VIEW                            | DBA_FREE_SPACE   |   101 |  2626 |    55  (11)| 00:00:01 |
|   6 |       UNION-ALL                      |                  |       |       |            |          |
|   7 |        NESTED LOOPS                  |                  |     1 |    69 |     7   (0)| 00:00:01 |
|   8 |         NESTED LOOPS                 |                  |     1 |    45 |     6   (0)| 00:00:01 |
|   9 |          TABLE ACCESS FULL           | FET$             |     1 |    39 |     6   (0)| 00:00:01 |
|* 10 |          INDEX UNIQUE SCAN           | I_FILE2          |     1 |     6 |     0   (0)| 00:00:01 |
|* 11 |         TABLE ACCESS CLUSTER         | TS$              |     1 |    24 |     1   (0)| 00:00:01 |
|  12 |        NESTED LOOPS                  |                  |    98 |  7350 |    33   (0)| 00:00:01 |
|  13 |         NESTED LOOPS                 |                  |    98 |  6762 |    33   (0)| 00:00:01 |
|* 14 |          TABLE ACCESS FULL           | TS$              |    59 |  1770 |    33   (0)| 00:00:01 |
|* 15 |          FIXED TABLE FIXED INDEX     | X$KTFBFE (ind:1) |     2 |    78 |     0   (0)| 00:00:01 |
|* 16 |         INDEX UNIQUE SCAN            | I_FILE2          |     1 |     6 |     0   (0)| 00:00:01 |
|  17 |        NESTED LOOPS                  |                  |     1 |   140 |    10  (60)| 00:00:01 |
|  18 |         NESTED LOOPS                 |                  |     1 |   134 |    10  (60)| 00:00:01 |
|  19 |          NESTED LOOPS                |                  |     1 |    69 |     4   (0)| 00:00:01 |
|  20 |           TABLE ACCESS FULL          | RECYCLEBIN$      |     1 |    39 |     3   (0)| 00:00:01 |
|* 21 |           TABLE ACCESS CLUSTER       | TS$              |     1 |    30 |     1   (0)| 00:00:01 |
|* 22 |            INDEX UNIQUE SCAN         | I_TS#            |     1 |       |     0   (0)| 00:00:01 |
|* 23 |          FIXED TABLE FIXED INDEX     | X$KTFBUE (ind:1) |   100K|  6347K|     6 (100)| 00:00:01 |
|* 24 |         INDEX UNIQUE SCAN            | I_FILE2          |     1 |     6 |     0   (0)| 00:00:01 |
|  25 |        NESTED LOOPS                  |                  |     1 |   121 |     5   (0)| 00:00:01 |
|  26 |         NESTED LOOPS                 |                  |     1 |    97 |     4   (0)| 00:00:01 |
|  27 |          MERGE JOIN CARTESIAN        |                  |     1 |    45 |     4   (0)| 00:00:01 |
|  28 |           TABLE ACCESS FULL          | RECYCLEBIN$      |     1 |    39 |     3   (0)| 00:00:01 |
|  29 |           BUFFER SORT                |                  |    78 |   468 |     1   (0)| 00:00:01 |
|  30 |            INDEX FULL SCAN           | I_FILE2          |    78 |   468 |     1   (0)| 00:00:01 |
|  31 |          TABLE ACCESS CLUSTER        | UET$             |     1 |    52 |     0   (0)| 00:00:01 |
|* 32 |           INDEX UNIQUE SCAN          | I_FILE#_BLOCK#   |     1 |       |     0   (0)| 00:00:01 |
|* 33 |         TABLE ACCESS CLUSTER         | TS$              |     1 |    24 |     1   (0)| 00:00:01 |
|* 34 |          INDEX UNIQUE SCAN           | I_TS#            |     1 |       |     0   (0)| 00:00:01 |
|  35 |      VIEW                            | SYS_DBA_SEGS     |  4897 |   406K|  1423   (1)| 00:00:26 |
|  36 |       UNION-ALL                      |                  |       |       |            |          |
|  37 |        NESTED LOOPS OUTER            |                  |     1 |   158 |  1128   (1)| 00:00:21 |
|  38 |         NESTED LOOPS                 |                  |     1 |   141 |  1127   (1)| 00:00:21 |
|  39 |          NESTED LOOPS                |                  |     1 |   120 |  1126   (1)| 00:00:21 |
|* 40 |           HASH JOIN                  |                  |     3 |   246 |  1120   (1)| 00:00:21 |
|  41 |            NESTED LOOPS              |                  | 36056 |   845K|   122   (0)| 00:00:03 |
|  42 |             INDEX FULL SCAN          | I_FILE2          |    78 |   468 |     1   (0)| 00:00:01 |
|  43 |             TABLE ACCESS CLUSTER     | SEG$             |   462 |  8316 |     2   (0)| 00:00:01 |
|* 44 |              INDEX RANGE SCAN        | I_FILE#_BLOCK#   |     1 |       |     1   (0)| 00:00:01 |
|  45 |            VIEW                      | SYS_OBJECTS      | 39147 |  2217K|   997   (1)| 00:00:18 |
|  46 |             UNION-ALL                |                  |       |       |            |          |
|* 47 |              TABLE ACCESS FULL       | TAB$             |  4543 |   102K|   237   (0)| 00:00:05 |
|  48 |              TABLE ACCESS FULL       | TABPART$         |   424 |  6784 |     4   (0)| 00:00:01 |
|  49 |              TABLE ACCESS FULL       | CLU$             |    10 |   140 |   237   (0)| 00:00:05 |
|* 50 |              TABLE ACCESS FULL       | IND$             | 11060 |   205K|   237   (0)| 00:00:05 |
|  51 |              TABLE ACCESS FULL       | INDPART$         |   587 |  9392 |     5   (0)| 00:00:01 |
|* 52 |              TABLE ACCESS FULL       | LOB$             |   938 | 17822 |   234   (0)| 00:00:05 |
|  53 |              TABLE ACCESS FULL       | TABSUBPART$      |   968 | 15488 |     5   (0)| 00:00:01 |
|  54 |              TABLE ACCESS FULL       | INDSUBPART$      | 20616 |   322K|    33   (0)| 00:00:01 |
|  55 |              TABLE ACCESS FULL       | LOBFRAG$         |     1 |    17 |     3   (0)| 00:00:01 |
|  56 |           TABLE ACCESS BY INDEX ROWID| OBJ$             |     1 |    38 |     2   (0)| 00:00:01 |
|* 57 |            INDEX RANGE SCAN          | I_OBJ1           |     1 |       |     1   (0)| 00:00:01 |
|* 58 |          TABLE ACCESS CLUSTER        | TS$              |     1 |    21 |     1   (0)| 00:00:01 |
|* 59 |           INDEX UNIQUE SCAN          | I_TS#            |     1 |       |     0   (0)| 00:00:01 |
|  60 |         TABLE ACCESS CLUSTER         | USER$            |     1 |    17 |     1   (0)| 00:00:01 |
|* 61 |          INDEX UNIQUE SCAN           | I_USER#          |     1 |       |     0   (0)| 00:00:01 |
|* 62 |        HASH JOIN OUTER               |                  |    21 |  2121 |   133   (1)| 00:00:03 |
|  63 |         NESTED LOOPS                 |                  |    21 |  1764 |   128   (0)| 00:00:03 |
|  64 |          NESTED LOOPS                |                  |    21 |  1323 |   107   (0)| 00:00:02 |
|  65 |           NESTED LOOPS               |                  |    21 |  1197 |   107   (0)| 00:00:02 |
|* 66 |            TABLE ACCESS FULL         | UNDO$            |   104 |  3640 |     3   (0)| 00:00:01 |
|* 67 |            TABLE ACCESS CLUSTER      | SEG$             |     1 |    22 |     1   (0)| 00:00:01 |
|* 68 |             INDEX UNIQUE SCAN        | I_FILE#_BLOCK#   |     1 |       |     0   (0)| 00:00:01 |
|* 69 |           INDEX UNIQUE SCAN          | I_FILE2          |     1 |     6 |     0   (0)| 00:00:01 |
|* 70 |          TABLE ACCESS CLUSTER        | TS$              |     1 |    21 |     1   (0)| 00:00:01 |
|* 71 |           INDEX UNIQUE SCAN          | I_TS#            |     1 |       |     0   (0)| 00:00:01 |
|  72 |         TABLE ACCESS FULL            | USER$            |   111 |  1887 |     4   (0)| 00:00:01 |
|* 73 |        HASH JOIN RIGHT OUTER         |                  |  4875 |   328K|   162   (1)| 00:00:03 |
|  74 |         TABLE ACCESS FULL            | USER$            |   111 |  1887 |     4   (0)| 00:00:01 |
|* 75 |         HASH JOIN                    |                  |  4875 |   247K|   158   (1)| 00:00:03 |
|  76 |          TABLE ACCESS FULL           | TS$              |    60 |  1260 |    33   (0)| 00:00:01 |
|  77 |          NESTED LOOPS                |                  |  4875 |   147K|   124   (0)| 00:00:03 |
|  78 |           TABLE ACCESS FULL          | FILE$            |    78 |   702 |     3   (0)| 00:00:01 |
|* 79 |           TABLE ACCESS CLUSTER       | SEG$             |    62 |  1364 |     2   (0)| 00:00:01 |
|* 80 |            INDEX RANGE SCAN          | I_FILE#_BLOCK#   |     1 |       |     1   (0)| 00:00:01 |
Predicate Information (identified by operation id):
   2 - filter(SUM(FLOOR("B"."BYTES"/"NEXT_EXTENT"))<8)
   4 - access("TABLESPACE_NAME"="B"."TABLESPACE_NAME")
  10 - access("F"."TS#"="FI"."TS#" AND "F"."FILE#"="FI"."RELFILE#")
  11 - filter("TS"."BITMAPPED"=0 AND "TS"."TS#"="F"."TS#")
  14 - filter("TS"."CONTENTS$"=0 AND "TS"."BITMAPPED"<>0 AND ("TS"."ONLINE$"=1 OR
              "TS"."ONLINE$"=4))
  15 - filter("TS"."TS#"="F"."KTFBFETSN")
  16 - access("F"."KTFBFETSN"="FI"."TS#" AND "F"."KTFBFEFNO"="FI"."RELFILE#")
  21 - filter("TS"."CONTENTS$"=0 AND "TS"."BITMAPPED"<>0 AND ("TS"."ONLINE$"=1 OR
              "TS"."ONLINE$"=4))
  22 - access("TS"."TS#"="RB"."TS#")
  23 - filter("U"."KTFBUESEGTSN"="RB"."TS#" AND "U"."KTFBUESEGFNO"="RB"."FILE#" AND
              "U"."KTFBUESEGBNO"="RB"."BLOCK#")
  24 - access("RB"."TS#"="FI"."TS#" AND "U"."KTFBUEFNO"="FI"."RELFILE#")
  32 - access("U"."TS#"="RB"."TS#" AND "U"."SEGFILE#"="RB"."FILE#" AND
              "U"."SEGBLOCK#"="RB"."BLOCK#")
       filter("U"."TS#"="FI"."TS#" AND "U"."SEGFILE#"="FI"."RELFILE#")
  33 - filter("TS"."BITMAPPED"=0)
  34 - access("TS"."TS#"="U"."TS#")
  40 - access("S"."FILE#"="SO"."HEADER_FILE" AND "S"."BLOCK#"="SO"."HEADER_BLOCK" AND
              "S"."TS#"="SO"."TS_NUMBER" AND "S"."TYPE#"="SO"."SEGMENT_TYPE_ID")
  44 - access("S"."TS#"="F"."TS#" AND "S"."FILE#"="F"."RELFILE#")
  47 - filter(BITAND("T"."PROPERTY",1024)=0)
  50 - filter("I"."TYPE#"=1 OR "I"."TYPE#"=2 OR "I"."TYPE#"=3 OR "I"."TYPE#"=4 OR "I"."TYPE#"=6
              OR "I"."TYPE#"=7 OR "I"."TYPE#"=8 OR "I"."TYPE#"=9)
  52 - filter(BITAND("L"."PROPERTY",64)=0 OR BITAND("L"."PROPERTY",128)=128)
  57 - access("O"."OBJ#"="SO"."OBJECT_ID" AND "O"."TYPE#"="SO"."OBJECT_TYPE_ID")
       filter("O"."TYPE#"="SO"."OBJECT_TYPE_ID")
  58 - filter("S"."EXTSIZE"*"TS"."BLOCKSIZE">0)
  59 - access("S"."TS#"="TS"."TS#")
  61 - access("O"."OWNER#"="U"."USER#"(+))
  62 - access("S"."USER#"="U"."USER#"(+))
  66 - filter("UN"."STATUS$"<>1)
  67 - filter("S"."TYPE#"=1 OR "S"."TYPE#"=10)
  68 - access("S"."TS#"="UN"."TS#" AND "S"."FILE#"="UN"."FILE#" AND "S"."BLOCK#"="UN"."BLOCK#")
  69 - access("UN"."TS#"="F"."TS#" AND "UN"."FILE#"="F"."RELFILE#")
  70 - filter("S"."EXTSIZE"*"TS"."BLOCKSIZE">0)
  71 - access("S"."TS#"="TS"."TS#")
  73 - access("S"."USER#"="U"."USER#"(+))
  75 - access("S"."TS#"="TS"."TS#")
       filter("S"."EXTSIZE"*"TS"."BLOCKSIZE">0)
  79 - filter("S"."TYPE#"<>6 AND "S"."TYPE#"<>5 AND "S"."TYPE#"<>8 AND "S"."TYPE#"<>10 AND
              "S"."TYPE#"<>1)
  80 - access("S"."TS#"="F"."TS#" AND "S"."FILE#"="F"."RELFILE#")
135 rows selected.
SQL>

Similar Messages

  • Difference Between Oracle Database 10g And Oracle 10g Express Edition

    Can any body Tell me What is The Difference Between Oracle Database 10g And Oracle 10g Express Edition.

    http://www.oracle.com/database/product_editions.html
    This link might help you.

  • Differences between Oracle Discoverer  10g and 11g .

    we would like to know if they are any differences between Oracle Discoverer 10g and 11g and any issues with 10g that are overcome in 11g.
    Please make us aware of any merits in going for 11g over 10g.
    apps version 11.5.10.2
    Regards

    Please see these links for the list of new features, bug fixes, certification, and installation of Discoverer 11g on 11i instance.
    Discoverer 11.1.1.4 Certified with E-Business Suite
    http://blogs.oracle.com/stevenChan/2011/02/discoverer_11114_ebs.html
    EBS Sysadmin Primer: Oracle BI Discoverer 11gR1
    http://blogs.oracle.com/stevenChan/2010/08/discoverer_11gr1_primer.html
    Oracle Business Intelligence Discoverer 11g
    http://www.oracle.com/technetwork/developer-tools/discoverer/overview/index.html
    Oracle Business Intelligence Discoverer 11g documentation
    http://www.oracle.com/technetwork/developer-tools/discoverer/documentation/index.html
    Thanks,
    Hussein

  • What difference between a domain trust and a forest trust?

    What difference between a domain trust and a forest trust?

    Greetings!
    The answer is right on the question! :)
    I think it is best to distinguish properly between forest and domain. This article is a good one:
    What Are Domains and Forests?
    But in a nutshell, a forest trust is mostly used between two organizations, Suppose company A has a unique forest and company B has another unique forest as well, when they are merged they can simply create a forest trust between each other, This trust can
    be one-way or two-way depending on your needs.
    Domain trusts are between a single instance (domain) of a forest to another instance (domain) of another forest. It is worth mentioning that trust can be transitive as well.
    What Are Domain and Forest Trusts?
    I hope you got the answer.
    Regards.
    Mahdi Tehrani   |  
      |  
    www.mahditehrani.ir
    Please click on Propose As Answer or
    to mark this post as
    and helpful for other people.
    This posting is provided AS-IS with no warranties, and confers no rights.
    How to query members of 'Local Administrators' group in all computers?

  • What are the differences between oracle adf 10g and adf 11g

    Could you please let me know what are the diff b/w oracle adf 10g and 11g, i tried in many user guides but i could not find it.
    Thanks in advance,
    Poli Reddy P

    893771 wrote:
    Hi all,
    I would like to know what the differences between Oracle and other NoSQL database are.
    When and why should we use Oracle?I suggest that you start here:
    http://www.oracle.com/technetwork/database/nosqldb/overview/index.html
    Is Oracle NoSQL database link with Big Data Appliance?Yes, Oracle NoSQL Database will be a component of the Big Data Appliance.
    Can we use map-reduce on a single personal computer? How should we install Oracle NoSQL database to use map reduce on a single personal computer?Yes, I believe you can run M/R on a single computer. Consult the various pieces of documentation available on the web. You may run Oracle NoSQL Database on the same computer that you are running M/R on, but it is likely that they will compete for CPU and IO resources and therefore performance may suffer.
    Do we also have eventual consistency with Oracle NoSQL database? Yes.
    Can we lose data if master node fails?If you run Oracle NoSQL Database with the default (recommended) durability settings, then if the master fails, a new one will be elected and data is not lost.
    Are transactions ACID with Oracle NoSQL database? How can we prove it?Yes, each operation is executed in an ACID transaction. The API has the concept of "multi" operations which allow the caller to perform multiple operations on sets of records with the same major key, but different minor keys. Those operations are also performed within a transaction.
    Charles Lamb

  • Difference between oracle bpm 10g and 11g

    Newbie: I am trying to understand 10g. The basic questions I have is
    1)What is the difference between 10g and 11g?
    2)What is the infrastructure & skillset needed for me to do implementation in 10g?
    3)How is migration from 10g to 11g is accomplished?
    Any resource links that would help me to get started with 10g would be appreciated.
    Chaitanya

    Hi,
    Please follow the below mentioned link to find your answer.
    Re: Main differences between oracle bpm 10.3 vs 11g
    Migration from ALBPM 5.7 to BPM 11g
    Bibhu

  • What difference between Oracle 9i AS and orion application server?

    Hi:
    Today I visited some website and read an information that Oracle 9i AS and orion application server are two differece application server.But When I start Oracle 9i AS ,I must use command of "java -jar orion.jar".Are they the same application server? If not ,can you tell me what difference?
    Thanks
    Best regards,
    hyson

    Hi Liu,
    I'm sure other people will coreect any errors I am about to make
    (if I make any :-), but some time ago, Oracle mad a licensing
    agreement with a company called IronFlare, regarding IronFlare's
    application server product called OrionServer. After that, Oracle
    came out with a new product -- Oracle Containers for Java (OC4J)
    -- which is based on OrionServer. In the first version (that had
    the version number 1.0.2.2), the application server basically came
    bundled in the "orion.jar" file, so in order to start up the application
    server, you used a command like:
    java -jar orion.jar
    However, the next version of OC4J (with version number 9.0.2.0.0
    [go figure ;-]), contained the "oc4j.jar" file (which replaced
    the "orion.jar" file).
    So I would say that the first version of OC4J was almost identical
    to OrionServer. But I think subsequent versions are becoming more
    and more different. Remember that at the same time, OrionServer
    is also still being developed. I think the first version of OC4J
    was based on version 1.5.2 of OrionServer. The next version of
    OrionServer (that should be released soon) is version 1.6.0.
    I have no idea how similar the latest version of OrionServer is
    to the latest version of OC4J. But if Oracle's history is any
    guide, then I would say that, eventually, OC4J and OrionServer
    will have very little similarity between them. Just look at the
    paths that Oracle's JDeveloper has taken in comparison with Borland's
    JBuilder. Originally, JDeveloper was based on JBuilder. Today,
    they are two completely different products.
    Hope this has helped you.
    Good Luck,
    Avi.

  • Differences between  Oracle Discoverer 10g and 11g (EBS & Desktop)

    We are in the process of upgrading from Oracle Discoverer 10g testing to Oracle Discoverer 11g.
    We have had several requests (from functional users) for documentation that might reflect the changes in this release level. Does anyone have relevant documentation that might help explain what has changed so that they can be better prepared.

    We are in the process of going from 10 desktop to 11 plus. I do not like it as other end-users I have talked to don't either. In desktop, I could have multiple reports open at one time, move tabs from one report to another so I wouldn't have to rebuild the report again. Also, there are times I have 3 or more sessions of desktop running with multiple reports running in them. In plus, I am limited to one session and one report. That slows down productivity big time. In desktop, exporting crosstabs to excel is more user friendly than plus. For desktop, it will fill in the cells below with the data above it if it changes. In plus, it looks like a pivot table. I have read other posts on how to work around that, but not always functional. Using Dense_Rank() works sometimes depending on how the report is written. IT is researching another way but haven't heard back from the consultants. Or, I will have to modify all my excel files with formulas to do that for me. Also in desktop, I can select all and copy paste the results into excel and all data comes in. The row and column headers, page items and even the title section will paste into excel. Plus only gives you the data, no row or column headers. So I have to export it every time I need the data. I have formatted excel files that all I need to do is copy paste and data flows beautifully. As for organizing and saving reports, desktop is much better. I can save reports out on our network under different folders so I can find them faster by topic. Granted, if that directory is an open one, anyone can change/delete it. In plus, the only advantage of saving it on the database is I can sort and search for reports or users. If you make any changes in plus and then walk away from your desk, plus will shut down after a certain time period. If you didn't save it, you have to start over. Don't know if this is something IT can fix???
    As we see it, plus is a step back in technology. I hope someone can change that opinion. Don't know if we are not getting the best support from whoever is working with us (Oracle or 3rd party) or we are missing something???? If so, please share.
    Thanks.

  • What difference between Jtextfield of Swing and Textfield of awt.

    when we press enter key in a textfield for TextField an action is
    occur than what method is called and tell me JtextField does not
    support enter key action.??
    Plz tell me about public boolean handleEvent(Event e){}.
    Infact i want to display internationlized text in textfield.with
    JTextfield after installing desired font and setting font i hv been succeeded to display in JTextfield what i want but since TextField is OS
    dependent it is showing me ??.Tell me what should i do bcz JTextfield is not giving me action event and TextField of awt is not giving me internationlized text.I want that TextField of awt should display my internationalized text.Tell me what should i do.I hv tried to set console of command prompt by using chcp command.
    thanx

    Add an ActionListener to the JTextField:
    http://java.sun.com/docs/books/tutorial/uiswing/components/simpletext.html#textfield

  • Cp 8.0.1,What difference between "Publish for Devices" and "Publish for Devices (App) ?

    i think "Publish for Devices" and "Publish for Devices (App). it same.
    "Publish for Devices (App)" for easy connect phonegap.
    "Publish for Devices"  for advance user.
    not sure you understand but i only share.

    Publish for Devices (App) is to publish your captivate project as a native application using PhoneGap API.
    Publish for Devices is the normal html publish but for Responsive project. It will publish your project as html content and later you can upload it on some LMS or WebServer to view the content on devices using Browser. It has not nothing to do about advance users.
    In both the cases the content will change according to the size of the viewing device.

  • What is difference between oracle 8i ,9i and 10g

    i want to know what is difference between oracle 8i ,9i and 10g with explain.

    Differences between 9i and 10g
    http://download-west.oracle.com/docs/cd/B14117_01/server.101/b10750/toc.htm
    http://download-east.oracle.com/docs/cd/B19306_01/server.102/b14214/toc.htm
    ... between 8i and 9i
    http://download-west.oracle.com/docs/cd/A91202_01/901_doc/server.901/a90120/toc.htm
    http://download-west.oracle.com/docs/cd/B10501_01/server.920/a96531/toc.htm

  • What are differences between the target tablespace and the source tablespac

    The IMPDP command create so manay errors. But the EXAMPLE tablespace is transported to the target database successfully. It seems that the transported tablespace is no difference with the source tablespace.
    Why create so many errors?
    How to avoid these errors?
    What are differences between the target tablespace and the source tablespace?
    Is this datapump action really successfull?
    Thw following is the log output:
    [oracle@hostp ~]$ impdp system/oracle dumpfile=user_dir:demo02.dmp tablespaces=example remap_tablespace=example:example
    Import: Release 10.2.0.1.0 - Production on Sunday, 28 September, 2008 18:08:31
    Copyright (c) 2003, 2005, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Master table "SYSTEM"."SYS_IMPORT_TABLESPACE_01" successfully loaded/unloaded
    Starting "SYSTEM"."SYS_IMPORT_TABLESPACE_01": system/******** dumpfile=user_dir:demo02.dmp tablespaces=example remap_tablespace=example:example
    Processing object type TABLE_EXPORT/TABLE/TABLE
    ORA-39117: Type needed to create table is not included in this operation. Failing sql is:
    CREATE TABLE "OE"."CUSTOMERS" ("CUSTOMER_ID" NUMBER(6,0), "CUST_FIRST_NAME" VARCHAR2(20) CONSTRAINT "CUST_FNAME_NN" NOT NULL ENABLE, "CUST_LAST_NAME" VARCHAR2(20) CONSTRAINT "CUST_LNAME_NN" NOT NULL ENABLE, "CUST_ADDRESS" "OE"."CUST_ADDRESS_TYP" , "PHONE_NUMBERS" "OE"."PHONE_LIST_TYP" , "NLS_LANGUAGE" VARCHAR2(3), "NLS_TERRITORY" VARCHAR2(30), "CREDIT_LIMIT" NUMBER(9,2), "CUST_EMAIL" VARCHAR2(30), "ACCOUNT_MGR_ID" NU
    ORA-39117: Type needed to create table is not included in this operation. Failing sql is:
    ORA-39117: Type needed to create table is not included in this operation. Failing sql is:
    CREATE TABLE "IX"."ORDERS_QUEUETABLE" ("Q_NAME" VARCHAR2(30), "MSGID" RAW(16), "CORRID" VARCHAR2(128), "PRIORITY" NUMBER, "STATE" NUMBER, "DELAY" TIMESTAMP (6), "EXPIRATION" NUMBER, "TIME_MANAGER_INFO" TIMESTAMP (6), "LOCAL_ORDER_NO" NUMBER, "CHAIN_NO" NUMBER, "CSCN" NUMBER, "DSCN" NUMBER, "ENQ_TIME" TIMESTAMP (6), "ENQ_UID" VARCHAR2(30), "ENQ_TID" VARCHAR2(30), "DEQ_TIME" TIMESTAMP (6), "DEQ_UID" VARCHAR2(30), "DEQ_
    Processing object type TABLE_EXPORT/TABLE/TABLE_DATA
    . . imported "SH"."CUSTOMERS" 9.850 MB 55500 rows
    . . imported "SH"."SUPPLEMENTARY_DEMOGRAPHICS" 695.9 KB 4500 rows
    . . imported "OE"."PRODUCT_DESCRIPTIONS" 2.379 MB 8640 rows
    . . imported "SH"."SALES":"SALES_Q4_2001" 2.257 MB 69749 rows
    . . imported "SH"."SALES":"SALES_Q1_1999" 2.070 MB 64186 rows
    . . imported "SH"."SALES":"SALES_Q3_2001" 2.129 MB 65769 rows
    . . imported "SH"."SALES":"SALES_Q1_2000" 2.011 MB 62197 rows
    . . imported "SH"."SALES":"SALES_Q1_2001" 1.964 MB 60608 rows
    . . imported "SH"."SALES":"SALES_Q2_2001" 2.050 MB 63292 rows
    . . imported "SH"."SALES":"SALES_Q3_1999" 2.166 MB 67138 rows
    Processing object type TABLE_EXPORT/TABLE/GRANT/OWNER_GRANT/OBJECT_GRANT
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'USER1' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."REGIONS" TO "USER1"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'EXAM_03' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."REGIONS" TO "EXAM_03"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'USER1' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."COUNTRIES" TO "USER1"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'EXAM_03' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."COUNTRIES" TO "EXAM_03"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'USER1' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."LOCATIONS" TO "USER1"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'EXAM_03' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."LOCATIONS" TO "EXAM_03"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'USER1' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."DEPARTMENTS" TO "USER1"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'EXAM_03' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."DEPARTMENTS" TO "EXAM_03"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'USER1' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."JOBS" TO "USER1"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'EXAM_03' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."JOBS" TO "EXAM_03"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'USER1' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."EMPLOYEES" TO "USER1"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'EXAM_03' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."EMPLOYEES" TO "EXAM_03"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'USER1' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."JOB_HISTORY" TO "USER1"
    ORA-39083: Object type OBJECT_GRANT failed to create with error:
    ORA-01917: user or role 'EXAM_03' does not exist
    Failing sql is:
    GRANT SELECT ON "HR"."JOB_HISTORY" TO "EXAM_03"
    ORA-39112: Dependent object type OBJECT_GRANT:"OE" skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type OBJECT_GRANT:"OE" skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX
    ORA-39112: Dependent object type INDEX:"OE"."CUSTOMERS_PK" skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type INDEX:"OE"."CUST_ACCOUNT_MANAGER_IX" skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type INDEX:"OE"."CUST_LNAME_IX" skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type INDEX:"OE"."CUST_EMAIL_IX" skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type INDEX:"PM"."PRINTMEDIA_PK" skipped, base object type TABLE:"PM"."PRINT_MEDIA" creation failed
    Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT
    ORA-39112: Dependent object type CONSTRAINT:"OE"."CUSTOMER_CREDIT_LIMIT_MAX" skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type CONSTRAINT:"OE"."CUSTOMER_ID_MIN" skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type CONSTRAINT:"OE"."CUSTOMERS_PK" skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type CONSTRAINT:"PM"."PRINTMEDIA__PK" skipped, base object type TABLE:"PM"."PRINT_MEDIA" creation failed
    ORA-39112: Dependent object type CONSTRAINT:"IX"."SYS_C005192" skipped, base object type TABLE:"IX"."ORDERS_QUEUETABLE" creation failed
    Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS
    ORA-39112: Dependent object type INDEX_STATISTICS skipped, base object type INDEX:"OE"."CUSTOMERS_PK" creation failed
    ORA-39112: Dependent object type INDEX_STATISTICS skipped, base object type INDEX:"OE"."CUST_ACCOUNT_MANAGER_IX" creation failed
    ORA-39112: Dependent object type INDEX_STATISTICS skipped, base object type INDEX:"OE"."CUST_LNAME_IX" creation failed
    ORA-39112: Dependent object type INDEX_STATISTICS skipped, base object type INDEX:"OE"."CUST_EMAIL_IX" creation failed
    ORA-39112: Dependent object type INDEX_STATISTICS skipped, base object type INDEX:"PM"."PRINTMEDIA_PK" creation failed
    Processing object type TABLE_EXPORT/TABLE/COMMENT
    ORA-39112: Dependent object type COMMENT skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type COMMENT skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type COMMENT skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type COMMENT skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type COMMENT skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type COMMENT skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type COMMENT skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type COMMENT skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type COMMENT skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT
    ORA-39112: Dependent object type REF_CONSTRAINT:"OE"."CUSTOMERS_ACCOUNT_MANAGER_FK" skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39083: Object type REF_CONSTRAINT failed to create with error:
    ORA-00942: table or view does not exist
    Failing sql is:
    ALTER TABLE "OE"."ORDERS" ADD CONSTRAINT "ORDERS_CUSTOMER_ID_FK" FOREIGN KEY ("CUSTOMER_ID") REFERENCES "OE"."CUSTOMERS" ("CUSTOMER_ID") ON DELETE SET NULL ENABLE
    ORA-39112: Dependent object type REF_CONSTRAINT:"PM"."PRINTMEDIA_FK" skipped, base object type TABLE:"PM"."PRINT_MEDIA" creation failed
    Processing object type TABLE_EXPORT/TABLE/TRIGGER
    ORA-39082: Object type TRIGGER:"HR"."SECURE_EMPLOYEES" created with compilation warnings
    ORA-39082: Object type TRIGGER:"HR"."SECURE_EMPLOYEES" created with compilation warnings
    ORA-39082: Object type TRIGGER:"HR"."UPDATE_JOB_HISTORY" created with compilation warnings
    ORA-39082: Object type TRIGGER:"HR"."UPDATE_JOB_HISTORY" created with compilation warnings
    Processing object type TABLE_EXPORT/TABLE/INDEX/FUNCTIONAL_AND_BITMAP/INDEX
    ORA-39112: Dependent object type INDEX:"OE"."CUST_UPPER_NAME_IX" skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/FUNCTIONAL_AND_BITMAP/INDEX_STATISTICS
    ORA-39112: Dependent object type INDEX_STATISTICS skipped, base object type INDEX:"OE"."CUST_UPPER_NAME_IX" creation failed
    Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS
    ORA-39112: Dependent object type TABLE_STATISTICS skipped, base object type TABLE:"OE"."CUSTOMERS" creation failed
    ORA-39112: Dependent object type TABLE_STATISTICS skipped, base object type TABLE:"PM"."PRINT_MEDIA" creation failed
    ORA-39112: Dependent object type TABLE_STATISTICS skipped, base object type TABLE:"PM"."PRINT_MEDIA" creation failed
    ORA-39112: Dependent object type TABLE_STATISTICS skipped, base object type TABLE:"IX"."ORDERS_QUEUETABLE" creation failed
    Processing object type TABLE_EXPORT/TABLE/INDEX/DOMAIN_INDEX/INDEX
    Processing object type TABLE_EXPORT/TABLE/POST_INSTANCE/PROCACT_INSTANCE
    ORA-39112: Dependent object type PROCACT_INSTANCE skipped, base object type TABLE:"IX"."ORDERS_QUEUETABLE" creation failed
    ORA-39083: Object type PROCACT_INSTANCE failed to create with error:
    ORA-01403: no data found
    ORA-01403: no data found
    Failing sql is:
    BEGIN
    SYS.DBMS_AQ_IMP_INTERNAL.IMPORT_SIGNATURE_TABLE('AQ$_ORDERS_QUEUETABLE_G');COMMIT; END;
    Processing object type TABLE_EXPORT/TABLE/POST_INSTANCE/PROCDEPOBJ
    ORA-39112: Dependent object type PROCDEPOBJ:"IX"."AQ$_ORDERS_QUEUETABLE_V" skipped, base object type TABLE:"IX"."ORDERS_QUEUETABLE" creation failed
    ORA-39112: Dependent object type PROCDEPOBJ:"IX"."ORDERS_QUEUE_N" skipped, base object type TABLE:"IX"."ORDERS_QUEUETABLE" creation failed
    ORA-39112: Dependent object type PROCDEPOBJ:"IX"."ORDERS_QUEUE_R" skipped, base object type TABLE:"IX"."ORDERS_QUEUETABLE" creation failed
    ORA-39112: Dependent object type PROCDEPOBJ:"IX"."AQ$_ORDERS_QUEUETABLE_E" skipped, base object type TABLE:"IX"."ORDERS_QUEUETABLE" creation failed
    ORA-39112: Dependent object type PROCDEPOBJ:"IX"."ORDERS_QUEUE" skipped, base object type TABLE:"IX"."ORDERS_QUEUETABLE" creation failed
    Job "SYSTEM"."SYS_IMPORT_TABLESPACE_01" completed with 63 error(s) at 18:09:14

    Short of trying to then reverse-engineer the objects that are in the dump file (I believe Data Pump export files contain some XML representations of DDL in addition to various binary bits, making it potentially possible to try to scan the dump file for the object definitions), I would tend to assume that the export didn't include those type definitions.
    Since it looks like you're trying to set up the sample schemas, is there a reason that you wouldn't just run the sample schema setup scripts on the destination database? Why are you using Data Pump in the first place?
    Justin

  • Difference between oracle 9i Rac and 10g Rac

    Friends -
    Could you please list out what are the main differences between oracle 9i Rac and oracle 10g Rac
    Appreciate your support on this
    Regards
    satish

    hi
    check the new features document of 10g RAC
    http://download.oracle.com/docs/cd/B19306_01/rac.102/b14197/whatsnew.htm#sthref6
    HTH

  • What is difference between ADF Task Flow and Faces-Config - when delpoy ?

    What is difference between ADF Task Flow and Faces-Config? When I create navigation between pages with ADF task flow then the navigation don't work when I deploy my application to Weblogic 10.3. When I use default server then navigation works fine. With Faces_config in both situations all works ok - on Stanalone server and default.
    Where is the problem?
    Best regards!

    Shay, I don't use both faces-config and adf task flow! When I failed with task flow I tried faces-config.
    I have active on my weblogic - adf.oracle.domain(1.0,11.1.1.0.0). This is the right ADF? If yes then where is the problem?
    Best regards!

  • What's the difference between a web site and a web application?

    I'm stumped trying to come up to a difference between a web site and a web application for myself. As I see it, a web site points to a specific page and a web application is more of some sort of 'portal' to content and information.
    But where I'm stuck is that a web application is still viewed through a browser (is it not?) and a web site can still view content dynamically, making the line between web site and application prety gray.
    For instance, does a web site using ASP.NET or AJAX (I assume ASP.NET is AJAX's proprietary sibling, if not, ignore ASP.NET AND concentrate on the AJAX), becomes a web application because it can retrieve data dynamically and asynchronously or would a website
    using PHP and a CMS be more of a web application because it forms the pages on request, based on the request of the client and its content in its databse?
    Or maybe I'm totally wrong here - what differenciates between a web application and a website?
    http://support.peopleperhour.com/entries/68630566--C-mon-lets-Watch-The-Other-Woman-2014-full-movie-online-free
    https://glossicom.zendesk.com/entries/68643806--%D0%BC-v%C9%AA%C9%9Bc-%C3%A4st-Watch-The-Lucy-2014-full-movie-free
    https://cloudhance.zendesk.com/entries/68115098--%D0%BC-v%C9%AA%C9%9Bc-%C3%A4st-Watch-The-Lucy-2014-full-movie-free
    This is totally personal and subjective, but I'd say that a website is defined by its content, while a webapplication is
    defined by its interaction with the user. That is, a website can plausibly consist of a static content repository that's dealt out to all visitors, while a web application depends on interaction and requires programmatic user input and data processing.
    For example, a news site would be a "website", but a spreadsheet or a collaborative calendar would be web "applications". The news site shows essentially the same information to all visitors, while the calendar processes individual data.
    Practically, most websites with quickly changing content will also rely on a sophisticated programmatic (and/or database) backend, but at least in principle they're only defined by their output. The web application on the other hand is essentially a program that
    runs remotely, and it depends fundamentally on a processing and a data storage backend.
    http://support.peopleperhour.com/entries/68125597--%D0%BC-v%C9%AA%C9%9Bc-%C3%A4st-Watch-The-Lucy-2014-full-movie-free
    https://cloudhance.zendesk.com/entries/67541393--Watch-The-Godzilla-2014-free-Online-Full-Movie-HD-Quality
    http://support.peopleperhour.com/entries/68168787--Watch-The-Godzilla-2014-free-Online-Full-Movie-HD-Quality
    https://glossicom.zendesk.com/entries/68161538--Watch-The-Godzilla-2014-free-Online-Full-Movie-HD-Quality
    There is no real "difference". Web site is a more anachronistic term that exists from the early days of
    the internet where the notion of a dynamic application that can respond to user input was much more limited and much less common. Commercial websites started out largely as interactive brochures (with the notable exception of hotel/airline reservation sites).
    Over time their functionality (and the supporting technologies) became more and more responsive and the line between an application that you install on your computer and one that exists in the cloud became more and more blurred.
    If you're just looking to express yourself clearly when speaking about what you're building, I would continue to describe something that is an interactive brochure or business card as a "web site" and something that actually *does something that feels
    more like an application as a web app.
    The most basic distinction would be if a website has a supporting database that stores user data and modifies what the user sees based on some user specified criteria, then it's probably an app of some sort (although I would be reluctant to describe Amazon.com
    as a web app, even though it has a lot of very user-specific functionality). If, on the other hand, it is mostly static .html files that link to one another, I would call that a web site.
    Most often, these days, a web app will have a large portion of its functionality written in something that runs on the client (doing much of the processing in either javascript or actionscript, depending on how its implemented) and reaches back through some
    http process to the server for supporting data. The user doesn't move from page to page as much and experiences whatever they're going to experience on a single "page" that creates the app experience for them.

    ...can i make as many iweb websites as i want? ...and as many blogs as i want? ...i have never made one before....
    ....although, i do have my own small business and i do have a website that i paid a guy to make and also host....(which is a waste of $$$$ in my opinion as i think i can do a better job making one myself through iweb) ....
    ...anyways, i know it is splitting hairs but what exactly is the diff b/w a blog and a website ....i am under the impression that a blog is just a personal newsletter sort of thing,...?

Maybe you are looking for

  • A/P credit memo journal incase of Purchase posting system

    Hi, I am using purchase posting system for one of my client Some times while creating standalone A/P creditmemo the system is posting some amount to Price difference account Why does the system do so? I have many credit memos which are posting correc

  • Break link to style

    I've just had a situation where the font in a masthead has changed. I am guessing that when the masthead was built, a default paragraph style was in place so that the masthead represented style overrides, and that somehow the overrides have been remo

  • How to let intuit auto update

    it will not let intuit onto TurboTax site

  • Blackberry ID linked device does not show up in Blackberry link

    Hello all,  I am using a blackberry 10 (software version 10.1) that is registered to my blackberry ID account. Now i want to exchange files through the wireless network between my blackberry and my computer. My computer is running Blackberry Link 1.1

  • Errors of Solution Document Assistant

    Dear experts! I run Analyses based on Analysis Project 'ZTEST_DEV_00001' in work center "Solution Document Assistant". My project has standard SAP business scenarios in SOLAR01. EWA is adjusted in system SW0. But on the 3rd step I have errors: 1. Che