OCP培训笔记-DataPump

来源:互联网 发布:买家如何开通淘宝客 编辑:程序博客网 时间:2024/05/16 00:38

Mar18: DataPump

KEY WORDS:DATA PUMP ; 

EXPORT expdp ,4 modules by user/tablespace/tables/full;

IMPORT impdp , 4 modules either;

DIRECTORY create direacory ,grant ** on directory

*********************************************************

SQL> show user

USER is "SYS"

SQL> create directory dir_18 as '/ocm/logicalbak/'; >>>dump1, create a directory

Directory created.

SQL> grant read,write on directory dir_18 to public; >>>dump2,grant the right to this directory

Grant succeeded.

SQL> exit

Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

[oracle@db ~]$ expdp help=y >>>expdp help from system,exit the SQLs

Export: Release 11.2.0.1.0 - Production on Sun Mar 18 10:00:05 2012

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

The Data Pump export utility provides a mechanism for transferring data objects

between Oracle databases. The utility is invoked with the following command:

   Example: expdp scott/tiger DIRECTORY=dmpdir DUMPFILE=scott.dmp

You can control how Export runs by entering the 'expdp' command followed

by various parameters. To specify parameters, you use keywords:

   Format:  expdp KEYWORD=value or KEYWORD=(value1,value2,...,valueN)

   Example: expdp scott/tiger DUMPFILE=scott.dmp DIRECTORY=dmpdir SCHEMAS=scott

               or TABLES=(T1:P1,T1:P2), if T1 is partitioned table

USERID must be the first parameter on the command line.

------------------------------------------------------------------------------

The available keywords and their descriptions follow. Default values are listed within square brackets.

ATTACH

Attach to an existing job.

For example, ATTACH=job_name.

COMPRESSION

Reduce the size of a dump file.

Valid keyword values are: ALL, DATA_ONLY, [METADATA_ONLY] and NONE.

CONTENT

Specifies data to unload.

Valid keyword values are: [ALL], DATA_ONLY and METADATA_ONLY.

DATA_OPTIONS

Data layer option flags.

Valid keyword values are: XML_CLOBS.

DIRECTORY

Directory object to be used for dump and log files.

DUMPFILE

Specify list of destination dump file names [expdat.dmp].

For example, DUMPFILE=scott1.dmp, scott2.dmp, dmpdir:scott3.dmp.

ENCRYPTION

Encrypt part or all of a dump file.

Valid keyword values are: ALL, DATA_ONLY, ENCRYPTED_COLUMNS_ONLY, METADATA_ONLY and NONE.

ENCRYPTION_ALGORITHM

Specify how encryption should be done.

Valid keyword values are: [AES128], AES192 and AES256.

ENCRYPTION_MODE

Method of generating encryption key.

Valid keyword values are: DUAL, PASSWORD and [TRANSPARENT].

ENCRYPTION_PASSWORD

Password key for creating encrypted data within a dump file.

ESTIMATE

Calculate job estimates.

Valid keyword values are: [BLOCKS] and STATISTICS.

ESTIMATE_ONLY

Calculate job estimates without performing the export.

EXCLUDE

Exclude specific object types.

For example, EXCLUDE=SCHEMA:"='HR'".

FILESIZE

Specify the size of each dump file in units of bytes.

FLASHBACK_SCN

SCN used to reset session snapshot.

FLASHBACK_TIME

Time used to find the closest corresponding SCN value.

FULL

Export entire database [N].

HELP

Display Help messages [N].

INCLUDE

Include specific object types.

For example, INCLUDE=TABLE_DATA.

JOB_NAME

Name of export job to create.

LOGFILE

Specify log file name [export.log].

NETWORK_LINK

Name of remote database link to the source system.

NOLOGFILE

Do not write log file [N].

PARALLEL

Change the number of active workers for current job.

PARFILE

Specify parameter file name.

QUERY

Predicate clause used to export a subset of a table.

For example, QUERY=employees:"WHERE department_id > 10".

REMAP_DATA

Specify a data conversion function.

For example, REMAP_DATA=EMP.EMPNO:REMAPPKG.EMPNO.

REUSE_DUMPFILES

Overwrite destination dump file if it exists [N].

SAMPLE

Percentage of data to be exported. 

SCHEMAS

List of schemas to export [login schema].

SOURCE_EDITION

Edition to be used for extracting metadata.

STATUS

Frequency (secs) job status is to be monitored where

the default [0] will show new status when available.

TABLES

Identifies a list of tables to export.

For example, TABLES=HR.EMPLOYEES,SH.SALES:SALES_1995.

TABLESPACES

Identifies a list of tablespaces to export.

TRANSPORTABLE

Specify whether transportable method can be used.

Valid keyword values are: ALWAYS and [NEVER].

TRANSPORT_FULL_CHECK

Verify storage segments of all tables [N].

TRANSPORT_TABLESPACES

List of tablespaces from which metadata will be unloaded.

VERSION

Version of objects to export.

Valid keyword values are: [COMPATIBLE], LATEST or any valid database version.

------------------------------------------------------------------------------

The following commands are valid while in interactive mode.

Note: abbreviations are allowed.

ADD_FILE

Add dumpfile to dumpfile set.

CONTINUE_CLIENT

Return to logging mode. Job will be restarted if idle.

EXIT_CLIENT

Quit client session and leave job running.

FILESIZE

Default filesize (bytes) for subsequent ADD_FILE commands.

HELP

Summarize interactive commands.

KILL_JOB

Detach and delete job.

PARALLEL

Change the number of active workers for current job.

REUSE_DUMPFILES

Overwrite destination dump file if it exists [N]. 

START_JOB

Start or resume current job.

Valid keyword values are: SKIP_CURRENT.

STATUS

Frequency (secs) job status is to be monitored where

the default [0] will show new status when available.

STOP_JOB

Orderly shutdown of job execution and exits the client.

Valid keyword values are: IMMEDIATE.

[oracle@db ~]$ expdp mode  :tables=table_name 

>>>there are 4 modules to expdp:by full,by schema,by tablespace,by tables,

SQL> show parameter db_name

NAME                                 TYPE        VALUE

------------------------------------ ----------- ------------------------------

db_name                              string      etc

SQL> @/oracle/product/db_1/rdbms/admin/utlsampl.sql

>>>the scripts to create the USER "SCOTT",(be sure the  path is correct)

Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

[oracle@db ~]$ rlwrap sqlplus / as sysdba

SQL*Plus: Release 11.2.0.1.0 Production on Sun Mar 18 10:03:52 2012

Copyright (c) 1982, 2009, Oracle.  All rights reserved.

Connected to:

Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> conn scott/tiger

Connected.

SQL> select * from tab;

TNAME                          TABTYPE  CLUSTERID

------------------------------ ------- ----------

BONUS                          TABLE

DEPT                           TABLE

EMP                            TABLE

SALGRADE                       TABLE

SQL> select * from emp;

     EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM

---------- ---------- --------- ---------- --------- ---------- ----------

    DEPTNO

----------

      7369 SMITH      CLERK           7902 17-DEC-80        800

        20

      7499 ALLEN      SALESMAN        7698 20-FEB-81       1600        300

        30

      7521 WARD       SALESMAN        7698 22-FEB-81       1250        500

        30

     EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM

---------- ---------- --------- ---------- --------- ---------- ----------

    DEPTNO

----------

      7566 JONES      MANAGER         7839 02-APR-81       2975

        20

      7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400

        30

      7698 BLAKE      MANAGER         7839 01-MAY-81       2850

        30

     EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM

---------- ---------- --------- ---------- --------- ---------- ----------

    DEPTNO

----------

      7782 CLARK      MANAGER         7839 09-JUN-81       2450

        10

      7788 SCOTT      ANALYST         7566 19-APR-87       3000

        20

      7839 KING       PRESIDENT            17-NOV-81       5000

        10

     EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM

---------- ---------- --------- ---------- --------- ---------- ----------

    DEPTNO

----------

      7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0

        30

      7876 ADAMS      CLERK           7788 23-MAY-87       1100

        20

      7900 JAMES      CLERK           7698 03-DEC-81        950

        30

     EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM

---------- ---------- --------- ---------- --------- ---------- ----------

    DEPTNO

----------

      7902 FORD       ANALYST         7566 03-DEC-81       3000

        20

      7934 MILLER     CLERK           7782 23-JAN-82       1300

        10

14 rows selected.

SQL> exit

Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

[oracle@db ~]$ expdp scott/tiger  tables=emp directory=dir_18 dumpfile=emp.dmp logfile=emp.log >>>dump3, export by table,expdp user mode directory dumpfile logfile;1,2,3,4,5 

Export: Release 11.2.0.1.0 - Production on Sun Mar 18 10:05:38 2012

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

Starting "SCOTT"."SYS_EXPORT_TABLE_01":  scott/******** tables=emp directory=dir_18 dumpfile=emp.dmp logfile=emp.log 

Estimate in progress using BLOCKS method...

Processing object type TABLE_EXPORT/TABLE/TABLE_DATA

Total estimation using BLOCKS method: 64 KB

Processing object type TABLE_EXPORT/TABLE/TABLE

Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX

Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT

Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS

Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT

Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS

. . exported "SCOTT"."EMP"                               8.570 KB      14 rows

Master table "SCOTT"."SYS_EXPORT_TABLE_01" successfully loaded/unloaded

******************************************************************************

Dump file set for SCOTT.SYS_EXPORT_TABLE_01 is:

  /ocm/logicalbak/emp.dmp

Job "SCOTT"."SYS_EXPORT_TABLE_01" successfully completed at 10:05:58

[oracle@db ~]$ cd /ocm/logicalbak/

[oracle@db logicalbak]$ ll >>>change the directory ,find the dump file was created

total 132

-rw-r-----  1 oracle oinstall 118784 Mar 18 10:05 emp.dmp

-rw-r--r--  1 oracle oinstall   1332 Mar 18 10:05 emp.log

[oracle@db logicalbak]$ more emp.

emp.: No such file or directory

[oracle@db logicalbak]$ more emp.dmp >>>emp.dmp is a binary files,the uses can't view it by more command.

\G

U

:

b眣 刕L]4VA

[oracle@db logicalbak]$ more emp.log 

;;; 

Export: Release 11.2.0.1.0 - Production on Sun Mar 18 10:05:38 2012

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

;;; 

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

Starting "SCOTT"."SYS_EXPORT_TABLE_01":  scott/******** tables=emp directory=dir_18 dumpfile=emp.dmp log

file=emp.log 

Estimate in progress using BLOCKS method...

Processing object type TABLE_EXPORT/TABLE/TABLE_DATA

Total estimation using BLOCKS method: 64 KB

Processing object type TABLE_EXPORT/TABLE/TABLE

Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX

Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT

Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS

Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT

Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS

. . exported "SCOTT"."EMP"                               8.570 KB      14 rows

Master table "SCOTT"."SYS_EXPORT_TABLE_01" successfully loaded/unloaded

******************************************************************************

Dump file set for SCOTT.SYS_EXPORT_TABLE_01 is:

  /ocm/logicalbak/emp.dmp

Job "SCOTT"."SYS_EXPORT_TABLE_01" successfully completed at 10:05:58

 [oracle@db logicalbak]$ expdp   tables=emp directory=dir_18 dumpfile=emp_sys.dmp logfile=emp.log

>>>dump4,export by table,still

Export: Release 11.2.0.1.0 - Production on Sun Mar 18 10:07:16 2012

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

Username: sys as sysdba

Password: 

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

Starting "SYS"."SYS_EXPORT_TABLE_01":  sys/******** AS SYSDBA tables=emp directory=dir_18 dumpfile=emp_sys.dmp logfile=emp.log 

Estimate in progress using BLOCKS method...

Processing object type TABLE_EXPORT/TABLE/TABLE_DATA

Total estimation using BLOCKS method: 0 KB

ORA-39166: Object SYS.EMP was not found. >>>emp belongs to SCOTT,the current user is SYS,log on as SCOTT or type scott.emp,as the default user is SYS

ORA-31655: no data or metadata objects selected for job

Job "SYS"."SYS_EXPORT_TABLE_01" completed with 2 error(s) at 10:07:24

[oracle@db logicalbak]$ expdp   tables=scott.emp directory=dir_18 dumpfile=emp_sys.dmp logfile=emp.log

Export: Release 11.2.0.1.0 - Production on Sun Mar 18 10:07:39 2012

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

Username: sys as sysdba

Password: 

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

Starting "SYS"."SYS_EXPORT_TABLE_01":  sys/******** AS SYSDBA tables=scott.emp directory=dir_18 dumpfile=emp_sys.dmp logfile=emp.log 

Estimate in progress using BLOCKS method...

Processing object type TABLE_EXPORT/TABLE/TABLE_DATA

Total estimation using BLOCKS method: 64 KB

Processing object type TABLE_EXPORT/TABLE/TABLE

Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX

Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT

Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS

Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT

Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS

. . exported "SCOTT"."EMP"                               8.570 KB      14 rows

Master table "SYS"."SYS_EXPORT_TABLE_01" successfully loaded/unloaded

******************************************************************************

Dump file set for SYS.SYS_EXPORT_TABLE_01 is:

  /ocm/logicalbak/emp_sys.dmp

Job "SYS"."SYS_EXPORT_TABLE_01" successfully completed at 10:07:51

[oracle@db logicalbak]$ ll >>>view the files ,new dmp was been created

total 256

-rw-r-----  1 oracle oinstall 118784 Mar 18 10:05 emp.dmp

-rw-r--r--  1 oracle oinstall   1346 Mar 18 10:07 emp.log

-rw-r-----  1 oracle oinstall 118784 Mar 18 10:07 emp_sys.dmp

[oracle@db logicalbak]$ expdp   schemas=scott  directory=dir_18 dumpfile=scott.dmp  >>>dump5.export by schemas

>>>expdp scott/tiger schemas=scott directory=dir_18 dumpfile=scott.dmp logfile= scott.log

Export: Release 11.2.0.1.0 - Production on Sun Mar 18 10:09:05 2012

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

Username: scott

Password: 

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

Starting "SCOTT"."SYS_EXPORT_SCHEMA_01":  scott/******** schemas=scott directory=dir_18 dumpfile=scott.dmp 

Estimate in progress using BLOCKS method...

Processing object type SCHEMA_EXPORT/TABLE/TABLE_DATA

Total estimation using BLOCKS method: 192 KB

Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA

Processing object type SCHEMA_EXPORT/TABLE/TABLE

Processing object type SCHEMA_EXPORT/TABLE/INDEX/INDEX

Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/CONSTRAINT

Processing object type SCHEMA_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS

Processing object type SCHEMA_EXPORT/TABLE/COMMENT

Processing object type SCHEMA_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT

Processing object type SCHEMA_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS

. . exported "SCOTT"."DEPT"                              5.937 KB       4 rows

. . exported "SCOTT"."EMP"                               8.570 KB      14 rows

. . exported "SCOTT"."SALGRADE"                          5.867 KB       5 rows

. . exported "SCOTT"."BONUS"                                 0 KB       0 rows

Master table "SCOTT"."SYS_EXPORT_SCHEMA_01" successfully loaded/unloaded

******************************************************************************

Dump file set for SCOTT.SYS_EXPORT_SCHEMA_01 is:

  /ocm/logicalbak/scott.dmp

Job "SCOTT"."SYS_EXPORT_SCHEMA_01" successfully completed at 10:09:51

[oracle@db logicalbak]$ expdp   tablespaces=users  directory=dir_18 dumpfile=users.dmp  >>>dump6,export by tablespace

expdp tablespace=users directory =dir_18 dumpfile=use.dmp logfile=use.log(or nolog)

Export: Release 11.2.0.1.0 - Production on Sun Mar 18 10:10:22 2012

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

Username: sys as sysdba

Password: 

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

Starting "SYS"."SYS_EXPORT_TABLESPACE_01":  sys/******** AS SYSDBA tablespaces=users directory=dir_18 dumpfile=users.dmp 

Estimate in progress using BLOCKS method...

Processing object type TABLE_EXPORT/TABLE/TABLE_DATA

Total estimation using BLOCKS method: 256 KB

Processing object type TABLE_EXPORT/TABLE/TABLE

Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX

Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT

Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS

Processing object type TABLE_EXPORT/TABLE/AUDIT_OBJ

Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT

Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS

. . exported "LIJH"."TEST"                               5.023 KB       1 rows

. . exported "SCOTT"."DEPT"                              5.937 KB       4 rows

. . exported "SCOTT"."EMP"                               8.570 KB      14 rows

. . exported "SCOTT"."SALGRADE"                          5.867 KB       5 rows

. . exported "SCOTT"."BONUS"                                 0 KB       0 rows

Master table "SYS"."SYS_EXPORT_TABLESPACE_01" successfully loaded/unloaded

******************************************************************************

Dump file set for SYS.SYS_EXPORT_TABLESPACE_01 is:

  /ocm/logicalbak/users.dmp

Job "SYS"."SYS_EXPORT_TABLESPACE_01" successfully completed at 10:10:40

[oracle@db logicalbak]$ expdp   full=y  directory=dir_18 dumpfile=full_%u.dmp parallel=2 >>>dump7,export by full database

>>>expdp full=y directory = dir_18 dumpfile =full%u.dmp parallel=2(???parallel is what?)

Export: Release 11.2.0.1.0 - Production on Sun Mar 18 10:12:01 2012

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

Username: sys as sysdba

Password: 

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

Starting "SYS"."SYS_EXPORT_FULL_01":  sys/******** AS SYSDBA full=y directory=dir_18 dumpfile=full_%u.dmp parallel=2 

Estimate in progress using BLOCKS method...

Processing object type DATABASE_EXPORT/SCHEMA/TABLE/TABLE_DATA

Total estimation using BLOCKS method: 56.06 MB

Processing object type DATABASE_EXPORT/TABLESPACE

. . exported "APEX_030200"."WWV_FLOW_PAGE_PLUGS"         3.835 MB    7417 rows

Processing object type DATABASE_EXPORT/PROFILE

Processing object type DATABASE_EXPORT/SYS_USER/USER

Processing object type DATABASE_EXPORT/SCHEMA/USER

Processing object type DATABASE_EXPORT/ROLE

. . exported "APEX_030200"."WWV_FLOW_STEP_ITEMS"         3.505 MB    9673 rows

Processing object type DATABASE_EXPORT/GRANT/SYSTEM_GRANT/PROC_SYSTEM_GRANT

Processing object type DATABASE_EXPORT/SCHEMA/GRANT/SYSTEM_GRANT

Processing object type DATABASE_EXPORT/SCHEMA/ROLE_GRANT

Processing object type DATABASE_EXPORT/SCHEMA/DEFAULT_ROLE

Processing object type DATABASE_EXPORT/SCHEMA/TABLESPACE_QUOTA

Processing object type DATABASE_EXPORT/RESOURCE_COST

Processing object type DATABASE_EXPORT/TRUSTED_DB_LINK

Processing object type DATABASE_EXPORT/SCHEMA/SEQUENCE/SEQUENCE

. . exported "APEX_030200"."WWV_FLOW_DICTIONARY$"        2.909 MB   70601 rows

. . exported "APEX_030200"."WWV_FLOW_STEP_PROCESSING"    1.248 MB    2239 rows

Processing object type DATABASE_EXPORT/SCHEMA/SEQUENCE/GRANT/OWNER_GRANT/OBJECT_GRANT

. . exported "APEX_030200"."WWV_FLOW_REGION_REPORT_COLUMN"  1.148 MB    7918 rows

. . exported "APEX_030200"."WWV_FLOW_STEP_ITEM_HELP"     1003. KB    6335 rows

. . exported "APEX_030200"."WWV_FLOW_STEPS"              571.0 KB    1755 rows

Processing object type DATABASE_EXPORT/DIRECTORY/DIRECTORY

. . exported "SYSMAN"."MGMT_METRICS"                     3.203 MB   12635 rows

. . exported "APEX_030200"."WWV_FLOW_LIST_ITEMS"         590.3 KB    3048 rows

. . exported "APEX_030200"."WWV_FLOW_STEP_VALIDATIONS"   611.4 KB    1990 rows

. . exported "SYSMAN"."MGMT_IP_REPORT_ELEM_PARAMS"       406.8 KB    1869 rows

Processing object type DATABASE_EXPORT/DIRECTORY/GRANT/OWNER_GRANT/OBJECT_GRANT

. . exported "SYSMAN"."MGMT_JOB_STEP_PARAMS"             490.3 KB    5277 rows

. . exported "APEX_030200"."WWV_FLOW_LIST_TEMPLATES"     73.32 KB     105 rows

. . exported "APEX_030200"."WWV_FLOW_STEP_BRANCHES"      508.6 KB    3255 rows

. . exported "APEX_030200"."WWV_FLOW_STEP_BUTTONS"       472.4 KB    3513 rows

Processing object type DATABASE_EXPORT/CONTEXT

Processing object type DATABASE_EXPORT/SCHEMA/PUBLIC_SYNONYM/SYNONYM

Processing object type DATABASE_EXPORT/SCHEMA/SYNONYM

. . exported "ORDDATA"."ORDDCM_DOCS"                     445.5 KB       9 rows

. . exported "APEX_030200"."WWV_FLOW_LIST_OF_VALUES_DATA"  392.1 KB    4184 rows

. . exported "SYSMAN"."MGMT_POLICIES"                    715.8 KB    3270 rows

. . exported "APEX_030200"."WWV_FLOW_MESSAGES$"          348.4 KB    3706 rows

. . exported "APEX_030200"."WWV_FLOW_TEMPLATES"          180.6 KB      64 rows

. . exported "APEX_030200"."WWV_FLOW_CUSTOM_AUTH_SETUPS"  20.92 KB      11 rows

. . exported "APEX_030200"."WWV_FLOW_PAGE_PLUG_TEMPLATES"  98.99 KB     166 rows

. . exported "APEX_030200"."WWV_FLOW_ROW_TEMPLATES"      73.27 KB      54 rows

. . exported "APEX_030200"."WWV_FLOW_STEP_COMPUTATIONS"  258.3 KB     984 rows

. . exported "APEX_030200"."WWV_FLOW_WORKSHEETS"         141.6 KB      30 rows

. . exported "SYSMAN"."MGMT_JOB_CRED_PARAMS"             33.72 KB     101 rows

. . exported "APEX_030200"."WWV_FLOW_LISTS_OF_VALUES$"   207.8 KB     959 rows

. . exported "SYSMAN"."MGMT_JOB_EXECPLAN"                251.8 KB    1849 rows

. . exported "SYSMAN"."MGMT_SEC_INFO"                    7.109 KB       1 rows

. . exported "APEX_030200"."WWV_FLOW_MENU_OPTIONS"       170.1 KB    1452 rows

. . exported "APEX_030200"."WWV_FLOW_WORKSHEET_COLUMNS"  185.7 KB     721 rows

. . exported "ORDDATA"."ORDDCM_STD_ATTRS"                188.8 KB    2415 rows

. . exported "SYSMAN"."MGMT_JOB_PARAM_SOURCE"            96.19 KB     652 rows

. . exported "SYSMAN"."MGMT_JOB_PROP_PARAMS"             10.85 KB      25 rows

. . exported "APEX_030200"."WWV_FLOW_RANDOM_IMAGES"      50.38 KB      42 rows

. . exported "SYSMAN"."MGMT_COLLECTIONS"                 13.35 KB      21 rows

. . exported "SYSMAN"."MGMT_COLLECTION_TASKS"            18.23 KB      27 rows

. . exported "SYSMAN"."MGMT_ECM_MD_ALL_TBL_COLUMNS"      109.9 KB     702 rows

. . exported "SYSMAN"."MGMT_IP_SQL_STATEMENTS"           64.57 KB      31 rows

Processing object type DATABASE_EXPORT/SCHEMA/TYPE/TYPE_SPEC

. . exported "SYSMAN"."MGMT_JOB_SCHEDULE"                11.14 KB       2 rows

. . exported "SYSMAN"."MGMT_JOB_SEC_INFO"                9.484 KB      12 rows

. . exported "SYSMAN"."MGMT_JOB_USER_PARAMS"             7.515 KB      15 rows

. . exported "APEX_030200"."WWV_FLOW_BANNER"             9.320 KB      10 rows

. . exported "APEX_030200"."WWV_FLOW_BUTTON_TEMPLATES"   15.21 KB      12 rows

. . exported "APEX_030200"."WWV_FLOW_FLASH_CHARTS"       30.06 KB       5 rows

. . exported "APEX_030200"."WWV_FLOW_FLASH_CHART_SERIES"  13.79 KB       5 rows

. . exported "APEX_030200"."WWV_FLOW_INSTALL"            36.28 KB       2 rows

. . exported "APEX_030200"."WWV_FLOW_LISTS"              51.75 KB     601 rows

. . exported "APEX_030200"."WWV_FLOW_PAGE_GENERIC_ATTR"  8.382 KB      44 rows

. . exported "APEX_030200"."WWV_FLOW_PROCESSING"         45.50 KB      45 rows

. . exported "APEX_030200"."WWV_FLOW_SHORTCUTS"          26.61 KB      39 rows

. . exported "APEX_030200"."WWV_FLOW_THEMES"             20.89 KB      10 rows

Processing object type DATABASE_EXPORT/SCHEMA/TYPE/GRANT/OWNER_GRANT/OBJECT_GRANT

. . exported "ORDDATA"."ORDDCM_CT_PRED_OPRD"             13.01 KB      51 rows

. . exported "ORDDATA"."ORDDCM_MAPPING_DOCS"             9.484 KB       1 rows

. . exported "SYSMAN"."MGMT_ARU_PRODUCT_RELEASE_MAP"     84.80 KB    5956 rows

. . exported "SYSMAN"."MGMT_CATEGORY_MAP"                46.47 KB     637 rows

. . exported "SYSMAN"."MGMT_ECM_SNAPSHOT_MD_COLUMNS"     87.02 KB     837 rows

. . exported "SYSMAN"."MGMT_IP_ELEM_DEFAULT_PARAMS"      31.75 KB     130 rows

. . exported "SYSMAN"."MGMT_JOB_COMMAND_BLOCK_PROCS"     5.921 KB       3 rows

. . exported "SYSMAN"."MGMT_JOB_LARGE_PARAMS"            5.937 KB       2 rows

. . exported "SYSMAN"."MGMT_JOB_PARAMETER"               9.007 KB       4 rows

. . exported "SYSMAN"."MGMT_JOB_SQL_PARAMS"              6.937 KB      10 rows

. . exported "SYSMAN"."MGMT_JOB_SUBST_PARAMS"            7.125 KB      24 rows

. . exported "SYSMAN"."PARAM_VALUES_TAB"                 25.12 KB     308 rows

. . exported "SYSMAN"."MGMT_LICENSE_DEFINITIONS"         54.66 KB      59 rows

. . exported "SYSMAN"."MGMT_PAF_TEXTUAL_DATA"            42.51 KB       7 rows

. . exported "SYSMAN"."MGMT_POLICY_ASSOC"                34.06 KB     358 rows

. . exported "SYSMAN"."MGMT_POLICY_TYPE_VERSIONS"        19.71 KB     585 rows

. . exported "SYSMAN"."MGMT_POLICY_VIOL_CTXT_DEF"        68.09 KB     642 rows

. . exported "SYSMAN"."MGMT_TASK_QTABLE"                 21.65 KB      27 rows

. . exported "APEX_030200"."WWV_COLUMN_EXCEPTIONS"       5.976 KB       3 rows

. . exported "APEX_030200"."WWV_FLOWS"                   59.71 KB      10 rows

. . exported "APEX_030200"."WWV_FLOW_ACTIVITY_LOG_NUMBER$"  5.476 KB       1 rows

. . exported "APEX_030200"."WWV_FLOW_ALT_CONFIG_PICK"    8.210 KB      37 rows

. . exported "APEX_030200"."WWV_FLOW_APPLICATION_GROUPS"  7.968 KB       1 rows

. . exported "APEX_030200"."WWV_FLOW_CALS"               18.86 KB      11 rows

. . exported "APEX_030200"."WWV_FLOW_CAL_TEMPLATES"      38.88 KB       9 rows

. . exported "APEX_030200"."WWV_FLOW_CHARSETS"           7.789 KB      32 rows

. . exported "APEX_030200"."WWV_FLOW_CLICKTHRU_LOG_NUMBER$"  5.890 KB       1 rows

. . exported "APEX_030200"."WWV_FLOW_COMPANIES"          8.843 KB       3 rows

. . exported "APEX_030200"."WWV_FLOW_COMPANY_SCHEMAS"    6.281 KB       1 rows

. . exported "APEX_030200"."WWV_FLOW_COMPANY_TYPES"      6.593 KB      32 rows

. . exported "APEX_030200"."WWV_FLOW_COMPUTATIONS"       14.92 KB      14 rows

. . exported "APEX_030200"."WWV_FLOW_COUNTRIES"          9.828 KB     240 rows

. . exported "APEX_030200"."WWV_FLOW_DB_AUTH"            5.460 KB       1 rows

. . exported "APEX_030200"."WWV_FLOW_DEVELOPER_ROLES"    5.921 KB       9 rows

. . exported "APEX_030200"."WWV_FLOW_DUAL100"            5.703 KB     100 rows

. . exported "APEX_030200"."WWV_FLOW_FIELD_TEMPLATES"    19.31 KB      36 rows

. . exported "APEX_030200"."WWV_FLOW_FND_USER"           23.81 KB       1 rows

. . exported "APEX_030200"."WWV_FLOW_HNT_COLUMN_INFO"    23.55 KB      58 rows

. . exported "APEX_030200"."WWV_FLOW_HNT_TABLE_INFO"     9.382 KB       8 rows

. . exported "APEX_030200"."WWV_FLOW_ICON_BAR"           19.25 KB      12 rows

. . exported "APEX_030200"."WWV_FLOW_ITEMS"              15.34 KB      89 rows

. . exported "APEX_030200"."WWV_FLOW_LANGUAGES"          16.15 KB     132 rows

. . exported "APEX_030200"."WWV_FLOW_LANGUAGE_MAP"       15.28 KB      90 rows

. . exported "APEX_030200"."WWV_FLOW_LOV_VALUES"         8.867 KB       6 rows

. . exported "APEX_030200"."WWV_FLOW_MENUS"              7.718 KB       7 rows

. . exported "APEX_030200"."WWV_FLOW_MENU_TEMPLATES"     14.14 KB       8 rows

. . exported "APEX_030200"."WWV_FLOW_PAGE_GROUPS"        14.28 KB     105 rows

. . exported "APEX_030200"."WWV_FLOW_PASSWORD_HISTORY"   6.679 KB       1 rows

. . exported "APEX_030200"."WWV_FLOW_PATCHES"            10.69 KB       9 rows

. . exported "APEX_030200"."WWV_FLOW_PICK_END_USERS"     6.023 KB       4 rows

. . exported "APEX_030200"."WWV_FLOW_PICK_PAGE_VIEWS"    6.093 KB       5 rows

. . exported "APEX_030200"."WWV_FLOW_PLATFORM_PREFS"     9.015 KB      21 rows

. . exported "APEX_030200"."WWV_FLOW_POPUP_LOV_TEMPLATE"  32.23 KB      10 rows

. . exported "APEX_030200"."WWV_FLOW_QUERY_COLUMN"       9.929 KB      18 rows

. . exported "APEX_030200"."WWV_FLOW_QUERY_CONDITION"    9.609 KB       6 rows

. . exported "APEX_030200"."WWV_FLOW_QUERY_DEFINITION"   7.648 KB       6 rows

. . exported "APEX_030200"."WWV_FLOW_QUERY_OBJECT"       8.304 KB       6 rows

. . exported "APEX_030200"."WWV_FLOW_REGION_UPD_RPT_COLS"  36.80 KB     439 rows

. . exported "APEX_030200"."WWV_FLOW_RESTRICTED_SCHEMAS"  8.242 KB      46 rows

. . exported "APEX_030200"."WWV_FLOW_SECURITY_SCHEMES"   15.28 KB      19 rows

. . exported "APEX_030200"."WWV_FLOW_STANDARD_CSS"       9.742 KB      27 rows

. . exported "APEX_030200"."WWV_FLOW_STANDARD_ICONS"     16.92 KB     319 rows

. . exported "APEX_030200"."WWV_FLOW_STANDARD_JS"        7.203 KB       2 rows

. . exported "APEX_030200"."WWV_FLOW_SW_CREATE_KEYWORDS"  6.875 KB      10 rows

. . exported "APEX_030200"."WWV_FLOW_SW_MAIN_KEYWORDS"   10.85 KB     199 rows

. . exported "APEX_030200"."WWV_FLOW_SW_SET_KEYWORDS"    6.757 KB       4 rows

. . exported "APEX_030200"."WWV_FLOW_SW_SQLPLUS_CMD"     5.101 KB       8 rows

. . exported "APEX_030200"."WWV_FLOW_TABS"               13.53 KB       3 rows

. . exported "APEX_030200"."WWV_FLOW_TOPLEVEL_TABS"      13.18 KB       5 rows

. . exported "APEX_030200"."WWV_FLOW_TRANSLATABLE_COLS$"  29.55 KB     232 rows

. . exported "APEX_030200"."WWV_FLOW_TREES"              25.80 KB       3 rows

. . exported "APEX_030200"."WWV_FLOW_UPGRADE_PROGRESS"   21.89 KB      89 rows

. . exported "APEX_030200"."WWV_FLOW_UPG_TAB_NAME_CHANGES"  8.781 KB      42 rows

. . exported "APEX_030200"."WWV_FLOW_UPG_TAB_OBSOLETE"   6.476 KB      17 rows

. . exported "APEX_030200"."WWV_FLOW_USER_ACCESS_LOG_NUM$"  5.890 KB       1 rows

. . exported "APEX_030200"."WWV_FLOW_WORKSHEET_RPTS"     37.01 KB      30 rows

. . exported "APEX_030200"."WWV_FLOW_WORKSPACE_REQ_SIZE"  6.859 KB      14 rows

. . exported "APEX_030200"."WWV_MIG_EXPORTER"            7.382 KB       5 rows

. . exported "APEX_030200"."WWV_MIG_FRM_OLB_XMLTAGTABLEMAP"  11.29 KB      45 rows

. . exported "APEX_030200"."WWV_MIG_FRM_XMLTAGTABLEMAP"  10.55 KB      36 rows

. . exported "APEX_030200"."WWV_MIG_MENU_XMLTAGTABLEMAP"  8.710 KB       7 rows

. . exported "APEX_030200"."WWV_MIG_RESERVED_WORDS"      5.898 KB      87 rows

. . exported "APEX_030200"."WWV_MIG_RPT_XMLTAGTABLEMAP"  9.140 KB      15 rows

. . exported "LIJH"."TEST"                               5.023 KB       1 rows

. . exported "OLAPSYS"."CWM$CLASSIFICATION"              14.21 KB      41 rows

. . exported "OLAPSYS"."CWM$CLASSIFICATIONENTRY"         14.22 KB       5 rows

. . exported "OLAPSYS"."CWM$CLASSIFICATIONTYPE"          12.55 KB      15 rows

. . exported "OLAPSYS"."CWM$DOMAIN"                      15.39 KB      21 rows

. . exported "OLAPSYS"."CWM$FUNCTION"                    12.96 KB      14 rows

. . exported "OLAPSYS"."CWM$MODEL"                       12.67 KB       2 rows

. . exported "OLAPSYS"."CWM$OBJECTTYPE"                  12.82 KB      15 rows

. . exported "OLAPSYS"."CWM$PARAMETER"                   19.35 KB       5 rows

. . exported "OLAPSYS"."CWM$PROJECT"                     10.90 KB       3 rows

. . exported "OLAPSYS"."CWM2$AWCUBELOADPARM"              6.25 KB       1 rows

. . exported "OLAPSYS"."CWM2$AWCUBELOADTYPE"             5.921 KB       2 rows

. . exported "OLAPSYS"."CWM2$AWDIMLOADPARM"              6.335 KB       4 rows

. . exported "OLAPSYS"."CWM2$AWDIMLOADTYPE"              5.937 KB       2 rows

. . exported "OLAPSYS"."CWM2$MRALL_DESCRIPTORS"          7.085 KB      41 rows

. . exported "ORDDATA"."ORDDCM_ANON_ACTION_TYPES"        5.492 KB       4 rows

. . exported "ORDDATA"."ORDDCM_ANON_ATTRS"               8.703 KB      37 rows

. . exported "ORDDATA"."ORDDCM_ANON_RULES"               6.296 KB       3 rows

. . exported "ORDDATA"."ORDDCM_ANON_RULE_TYPES"          5.546 KB       3 rows

. . exported "ORDDATA"."ORDDCM_CT_ACTION"                6.664 KB       7 rows

. . exported "ORDDATA"."ORDDCM_CT_DAREFS"                6.218 KB      74 rows

. . exported "ORDDATA"."ORDDCM_CT_LOCATORPATHS"          10.07 KB      95 rows

. . exported "ORDDATA"."ORDDCM_CT_MACRO_DEP"             5.460 KB       1 rows

. . exported "ORDDATA"."ORDDCM_CT_MACRO_PAR"             5.484 KB       2 rows

. . exported "ORDDATA"."ORDDCM_CT_PRED"                  8.328 KB      61 rows

. . exported "ORDDATA"."ORDDCM_CT_PRED_PAR"              5.945 KB       3 rows

. . exported "ORDDATA"."ORDDCM_CT_PRED_SET"              8.906 KB       9 rows

. . exported "ORDDATA"."ORDDCM_DATA_MODEL"               5.867 KB       1 rows

. . exported "ORDDATA"."ORDDCM_DICT_ATTRS"               33.95 KB    2418 rows

. . exported "ORDDATA"."ORDDCM_DOC_REFS"                 6.507 KB       7 rows

. . exported "ORDDATA"."ORDDCM_DOC_TYPES"                6.984 KB       8 rows

. . exported "ORDDATA"."ORDDCM_INSTALL_DOCS"             6.546 KB       9 rows

. . exported "ORDDATA"."ORDDCM_INTERNAL_TAGS"            6.218 KB      42 rows

. . exported "ORDDATA"."ORDDCM_PREFS_VALID_VALUES_TAB"   6.492 KB      33 rows

. . exported "ORDDATA"."ORDDCM_PREFS_DEF_VALUES_TAB"     5.687 KB       7 rows

. . exported "ORDDATA"."ORDDCM_PREFS_LOOKUP"             9.703 KB      13 rows

. . exported "ORDDATA"."ORDDCM_PRV_ATTRS"                9.804 KB       3 rows

. . exported "ORDDATA"."ORDDCM_RT_PREF_PARAMS"           8.617 KB      13 rows

. . exported "ORDDATA"."ORDDCM_UID_DEFS"                  33.5 KB     245 rows

. . exported "ORDDATA"."ORDDCM_VR_DT_MAP"                6.515 KB      32 rows

. . exported "SCOTT"."DEPT"                              5.937 KB       4 rows

. . exported "SCOTT"."EMP"                               8.570 KB      14 rows

. . exported "SCOTT"."SALGRADE"                          5.867 KB       5 rows

. . exported "SYSMAN"."AQ$_MGMT_LOADER_QTABLE_S"         10.75 KB       1 rows

. . exported "SYSMAN"."AQ$_MGMT_NOTIFY_QTABLE_S"         10.75 KB       1 rows

. . exported "SYSMAN"."EMDW_TRACE_CONFIG"                7.062 KB       9 rows

. . exported "SYSMAN"."EUME2E_ASSOCS_LOOKUP"             6.601 KB       9 rows

. . exported "SYSMAN"."MGMT_ADMIN_LICENSES"              5.296 KB      19 rows

. . exported "SYSMAN"."MGMT_ALL_TARGET_PROPS"            9.773 KB       5 rows

. . exported "SYSMAN"."MGMT_ARU_FAMILY_PRODUCT_MAP"      25.85 KB    1660 rows

. . exported "SYSMAN"."MGMT_ARU_LANGUAGES"               6.164 KB      40 rows

. . exported "SYSMAN"."MGMT_ARU_OUI_COMPONENTS"          21.34 KB     393 rows

. . exported "SYSMAN"."MGMT_ARU_PLATFORMS"               9.585 KB      76 rows

. . exported "SYSMAN"."MGMT_ARU_PRODUCTS"                34.72 KB     744 rows

. . exported "SYSMAN"."MGMT_ARU_RELEASES"                19.90 KB     863 rows

. . exported "SYSMAN"."MGMT_AUDIT_DESTINATION"           5.492 KB       1 rows

. . exported "SYSMAN"."MGMT_AUDIT_MASTER"                5.078 KB       1 rows

. . exported "SYSMAN"."MGMT_AVAILABILITY"                6.687 KB       1 rows

. . exported "SYSMAN"."MGMT_AVAILABILITY_MARKER"         5.875 KB       1 rows

. . exported "SYSMAN"."MGMT_AVAILABLE_SEARCHES"          7.031 KB      15 rows

. . exported "SYSMAN"."MGMT_BLACKOUT_PROXY_TARGETS"      5.054 KB       1 rows

. . exported "SYSMAN"."MGMT_BLACKOUT_REASON"             9.593 KB      60 rows

. . exported "SYSMAN"."MGMT_BSLN_METRICS"                7.359 KB       6 rows

. . exported "SYSMAN"."MGMT_CALLBACKS"                   12.20 KB      87 rows

. . exported "SYSMAN"."MGMT_CATEGORIES"                  6.234 KB      12 rows

. . exported "SYSMAN"."MGMT_CATEGORY_CLASSES"            5.468 KB       2 rows

. . exported "SYSMAN"."MGMT_COLLECTION_METRIC_TASKS"     9.132 KB      27 rows

. . exported "SYSMAN"."MGMT_COLL_ITEMS"                  9.109 KB       5 rows

. . exported "SYSMAN"."MGMT_COLL_ITEM_METRICS"           7.203 KB      12 rows

. . exported "SYSMAN"."MGMT_CORRECTIVE_ACTION"           6.742 KB       2 rows

. . exported "SYSMAN"."MGMT_CREATED_USERS"               5.984 KB       4 rows

. . exported "SYSMAN"."MGMT_CREDENTIAL_SETS"             11.82 KB      33 rows

. . exported "SYSMAN"."MGMT_CREDENTIAL_SET_COLUMNS"      14.74 KB      82 rows

. . exported "SYSMAN"."MGMT_CREDENTIAL_SET_COL_VALS"     7.945 KB       8 rows

. . exported "SYSMAN"."MGMT_CREDENTIAL_TYPES"            8.468 KB      17 rows

. . exported "SYSMAN"."MGMT_CREDENTIAL_TYPE_COLUMNS"     11.80 KB      41 rows

. . exported "SYSMAN"."MGMT_CREDENTIAL_TYPE_COL_VALS"    7.656 KB       3 rows

. . exported "SYSMAN"."MGMT_CREDENTIAL_TYPE_REF"         8.335 KB       7 rows

. . exported "SYSMAN"."MGMT_CS_CONFIG_STANDARD"          15.93 KB       3 rows

. . exported "SYSMAN"."MGMT_CS_HIERARCHY"                11.30 KB     117 rows

. . exported "SYSMAN"."MGMT_CS_KEYWORD"                  5.562 KB       3 rows

. . exported "SYSMAN"."MGMT_CS_RULE"                     31.97 KB      94 rows

. . exported "SYSMAN"."MGMT_CS_RULEFOLDER"               9.335 KB      23 rows

. . exported "SYSMAN"."MGMT_CURRENT_AVAILABILITY"        6.289 KB       1 rows

. . exported "SYSMAN"."MGMT_DEPLOYMENT_SECTIONS"         5.507 KB       1 rows

. . exported "SYSMAN"."MGMT_DM_ALITEMS"                  7.054 KB      48 rows

. . exported "SYSMAN"."MGMT_DM_RULEENTRY"                12.51 KB      45 rows

. . exported "SYSMAN"."MGMT_DM_RULETEMPLATES"            9.882 KB      19 rows

. . exported "SYSMAN"."MGMT_ECM_ARU_MAP"                 8.164 KB      29 rows

. . exported "SYSMAN"."MGMT_ECM_CSA_OUT_OF_BOX"          5.031 KB       1 rows

. . exported "SYSMAN"."MGMT_ECM_MD_HIST_TBLS"            19.63 KB      39 rows

. . exported "SYSMAN"."MGMT_ECM_RESOURCES"               6.812 KB      14 rows

. . exported "SYSMAN"."MGMT_ECM_SNAPSHOT_MD_TABLES"      21.81 KB     122 rows

. . exported "SYSMAN"."MGMT_ECM_SNAPSHOT_METADATA"       17.29 KB      53 rows

. . exported "SYSMAN"."MGMT_ERROR_MASTER"                6.460 KB      12 rows

. . exported "SYSMAN"."MGMT_FAILOVER_CALLBACKS"          5.187 KB       4 rows

. . exported "SYSMAN"."MGMT_FBP_PATCHING_GUIDS"          5.617 KB       3 rows

. . exported "SYSMAN"."MGMT_GROUP_DEFAULT_CHART"         10.26 KB       9 rows

. . exported "SYSMAN"."MGMT_HTTP_SESSION_CALLBACKS"        5.5 KB       1 rows

. . exported "SYSMAN"."MGMT_IP_ELEM_PARAM_CLASSES"       19.91 KB     116 rows

. . exported "SYSMAN"."MGMT_IP_ELEM_TARGET_TYPES"        9.257 KB      86 rows

. . exported "SYSMAN"."MGMT_IP_REPORT_DEF"               38.19 KB     113 rows

. . exported "SYSMAN"."MGMT_IP_REPORT_DEF_ELEMENTS"      38.82 KB     298 rows

. . exported "SYSMAN"."MGMT_IP_REPORT_DEF_JIT_TYPES"     9.398 KB     127 rows

. . exported "SYSMAN"."MGMT_IP_REPORT_ELEM_DEF"          20.97 KB      77 rows

. . exported "SYSMAN"."MGMT_JOB"                         14.43 KB       4 rows

. . exported "SYSMAN"."MGMT_JOB_CALLBACKS"               6.289 KB       6 rows

. . exported "SYSMAN"."MGMT_JOB_COMMAND"                 18.40 KB     146 rows

. . exported "SYSMAN"."MGMT_JOB_DISPLAY_ERROR_CODES"     6.773 KB       8 rows

. . exported "SYSMAN"."MGMT_JOB_EVENT"                   5.484 KB       1 rows

. . exported "SYSMAN"."MGMT_JOB_EXECUTION"               17.07 KB       8 rows

. . exported "SYSMAN"."MGMT_JOB_EXEC_SUMMARY"            14.21 KB       4 rows

. . exported "SYSMAN"."MGMT_JOB_HISTORY"                 16.17 KB       8 rows

. . exported "SYSMAN"."MGMT_JOB_LOCK_INFO"               8.312 KB       6 rows

. . exported "SYSMAN"."MGMT_JOB_LOCK_TARGETS"            7.148 KB       6 rows

. . exported "SYSMAN"."MGMT_JOB_PURGE_CRITERIA"          6.460 KB       2 rows

. . exported "SYSMAN"."MGMT_JOB_PURGE_POLICIES"          5.531 KB       3 rows

. . exported "SYSMAN"."MGMT_JOB_PURGE_VALUES"            6.007 KB       2 rows

. . exported "SYSMAN"."MGMT_JOB_SINGLE_TARGET_TYPES"     9.039 KB     121 rows

. . exported "SYSMAN"."MGMT_JOB_STATE_CHANGES"           9.085 KB       4 rows

. . exported "SYSMAN"."MGMT_JOB_TYPE_DISPLAY_INFO"       11.91 KB      87 rows

. . exported "SYSMAN"."MGMT_JOB_TYPE_INFO"               37.37 KB     187 rows

. . exported "SYSMAN"."MGMT_JOB_TYPE_MAX_VERSIONS"       14.71 KB     180 rows

. . exported "SYSMAN"."MGMT_JOB_TYPE_PARAM_DSPLY_INFO"   30.85 KB     300 rows

. . exported "SYSMAN"."MGMT_JOB_TYPE_PARAM_URI_INFO"     8.148 KB       7 rows

. . exported "SYSMAN"."MGMT_JOB_TYPE_URI_INFO"           12.04 KB      99 rows

. . exported "SYSMAN"."MGMT_JOB_VALUE_PARAMS"            13.80 KB     180 rows

. . exported "SYSMAN"."MGMT_LICENSABLE_TARGET_TYPES"     7.125 KB      49 rows

. . exported "SYSMAN"."MGMT_LOADER_DESIGNATORS"          5.773 KB      40 rows

. . exported "SYSMAN"."MGMT_LOGIN_ASSISTANTS"            6.054 KB       2 rows

. . exported "SYSMAN"."MGMT_MASTER_CHANGED_CALLBACK"     5.906 KB       1 rows

. . exported "SYSMAN"."MGMT_METADATA_SETS"               9.914 KB      75 rows

. . exported "SYSMAN"."MGMT_METRICS_COMPOSITE_KEYS"      8.437 KB      22 rows

. . exported "SYSMAN"."MGMT_METRICS_EXT"                 10.21 KB      20 rows

. . exported "SYSMAN"."MGMT_METRIC_DEPENDENCY_DEF"       8.070 KB      16 rows

. . exported "SYSMAN"."MGMT_METRIC_VERSIONS"             17.10 KB     273 rows

. . exported "SYSMAN"."MGMT_MP_HOMEPAGE_REPORTS"         7.796 KB      30 rows

. . exported "SYSMAN"."MGMT_NESTED_JOB_TARGETS"          17.80 KB     126 rows

. . exported "SYSMAN"."MGMT_NOTIFY_FORMAT_HANDLERS"      5.812 KB       6 rows

. . exported "SYSMAN"."MGMT_NOTIFY_JOB_RULE_CONFIGS"     10.22 KB       1 rows

. . exported "SYSMAN"."MGMT_NOTIFY_PROFILES"             6.726 KB       3 rows

. . exported "SYSMAN"."MGMT_NOTIFY_QUEUES"               6.210 KB      27 rows

. . exported "SYSMAN"."MGMT_NOTIFY_RULES"                8.328 KB       7 rows

. . exported "SYSMAN"."MGMT_NOTIFY_RULE_CONFIGS"         25.32 KB      41 rows

. . exported "SYSMAN"."MGMT_OPERATIONS_MASTER"           13.86 KB      25 rows

. . exported "SYSMAN"."MGMT_OUI_ARU_MAP"                 5.812 KB      27 rows

. . exported "SYSMAN"."MGMT_PAF_APPLICATIONS"            12.53 KB      12 rows

. . exported "SYSMAN"."MGMT_PAF_COMP_JOBTYPE_MAPPINGS"   9.695 KB       2 rows

. . exported "SYSMAN"."MGMT_PAF_JOBTYPES"                10.39 KB       4 rows

. . exported "SYSMAN"."MGMT_PAF_JOBTYPE_PARAMS"          15.02 KB      17 rows

. . exported "SYSMAN"."MGMT_PAF_PARAM_GROUPS"            10.79 KB       6 rows

. . exported "SYSMAN"."MGMT_PAF_PROCEDURES"              14.56 KB       7 rows

. . exported "SYSMAN"."MGMT_PARAMETERS"                  13.70 KB      83 rows

. . exported "SYSMAN"."MGMT_PDP_COLUMN_METADATA"         5.976 KB       3 rows

. . exported "SYSMAN"."MGMT_PDP_METADATA"                5.914 KB       2 rows

. . exported "SYSMAN"."MGMT_PDP_PARAM_METADATA"          7.015 KB       9 rows

. . exported "SYSMAN"."MGMT_PDP_SETTING_METADATA"        7.937 KB       3 rows

. . exported "SYSMAN"."MGMT_PERFORMANCE_NAMES"           11.71 KB     106 rows

. . exported "SYSMAN"."MGMT_POLICY_ASSOC_CFG"            45.03 KB     364 rows

. . exported "SYSMAN"."MGMT_POLICY_ASSOC_CFG_PARAMS"     12.01 KB      46 rows

. . exported "SYSMAN"."MGMT_POLICY_BIND_VARS"             12.5 KB     169 rows

. . exported "SYSMAN"."MGMT_POLICY_PARAMETERS"           8.125 KB      27 rows

. . exported "SYSMAN"."MGMT_PRIVS"                       8.273 KB      24 rows

. . exported "SYSMAN"."MGMT_PRIV_GRANTS"                 13.10 KB     121 rows

. . exported "SYSMAN"."MGMT_PRIV_INCLUDES"               5.820 KB      13 rows

. . exported "SYSMAN"."MGMT_PURGE_POLICY"                10.57 KB      16 rows

. . exported "SYSMAN"."MGMT_PURGE_POLICY_GROUP"          6.148 KB       7 rows

. . exported "SYSMAN"."MGMT_PURGE_POLICY_TARGET_STATE"   9.281 KB      16 rows

. . exported "SYSMAN"."MGMT_REBUILD_INDEXES"             5.867 KB       1 rows

. . exported "SYSMAN"."MGMT_ROLES"                       5.437 KB       1 rows

. . exported "SYSMAN"."MGMT_ROLE_GRANTS"                 6.343 KB       1 rows

. . exported "SYSMAN"."MGMT_ROWSET_HANDLERS"             7.195 KB      14 rows

. . exported "SYSMAN"."MGMT_RT_BOOTSTRAP_TIMES"          5.468 KB       1 rows

. . exported "SYSMAN"."MGMT_SNAPSHOT_METRIC_MAP"         19.13 KB     221 rows

. . exported "SYSMAN"."MGMT_SWLIB_DIRECTORIES"           7.406 KB       5 rows

. . exported "SYSMAN"."MGMT_SYSTEM_PERFORMANCE_LOG"      8.734 KB       2 rows

. . exported "SYSMAN"."MGMT_TARGETS"                     15.85 KB       1 rows

. . exported "SYSMAN"."MGMT_TARGET_ADD_CALLBACKS"        5.984 KB      13 rows

. . exported "SYSMAN"."MGMT_TARGET_ASSOC_DEFS"           11.03 KB      15 rows

. . exported "SYSMAN"."MGMT_TARGET_DELETE_EXCEPTIONS"    5.953 KB      35 rows

. . exported "SYSMAN"."MGMT_TARGET_PROP_DEFS"            38.57 KB     288 rows

. . exported "SYSMAN"."MGMT_TARGET_ROLLUP_TIMES"         7.132 KB      26 rows

. . exported "SYSMAN"."MGMT_TARGET_TYPES"                9.726 KB      28 rows

. . exported "SYSMAN"."MGMT_TARGET_TYPE_COMPONENT_MAP"   6.460 KB       5 rows

. . exported "SYSMAN"."MGMT_TARGET_TYPE_VERSIONS"        11.93 KB      37 rows

. . exported "SYSMAN"."MGMT_TASK_WORKER_COUNTS"          5.507 KB       2 rows

. . exported "SYSMAN"."MGMT_TYPE_PROPERTIES"             8.585 KB      75 rows

. . exported "SYSMAN"."MGMT_USER_CALLBACKS"              6.507 KB      27 rows

. . exported "SYSMAN"."MGMT_USER_CAS"                    5.468 KB       2 rows

. . exported "SYSMAN"."MGMT_USER_CONTEXT"                5.906 KB       4 rows

. . exported "SYSMAN"."MGMT_USER_FOLDERS"                6.843 KB      24 rows

. . exported "SYSMAN"."MGMT_USER_SUBTAB_COL_PREFS"       8.687 KB      41 rows

. . exported "SYSMAN"."MGMT_VERSIONS"                    6.843 KB       5 rows

. . exported "SYSTEM"."REPCAT$_AUDIT_ATTRIBUTE"          6.335 KB       2 rows

. . exported "SYSTEM"."REPCAT$_OBJECT_TYPES"             6.890 KB      28 rows

. . exported "SYSTEM"."REPCAT$_RESOLUTION_METHOD"        5.843 KB      19 rows

. . exported "SYSTEM"."REPCAT$_TEMPLATE_STATUS"          5.492 KB       3 rows

. . exported "SYSTEM"."REPCAT$_TEMPLATE_TYPES"           6.296 KB       2 rows

. . exported "APEX_030200"."WWV_FLOWS_RESERVED"              0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_ACTIVITY_LOG1$"         0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_ACTIVITY_LOG2$"         0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_ALTERNATE_CONFIG"       0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_ALT_CONFIG_DETAIL"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_APP_BUILD_PREF"         0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_APP_COMMENTS"           0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_BUILDER_AUDIT_TRAIL"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_CLICKTHRU_LOG$"         0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_CLICKTHRU_LOG2$"        0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_COLLECTIONS$"           0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_COLLECTION_MEMBERS$"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_COMPOUND_CONDITIONS"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_CSS_REPOSITORY"         0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_CUSTOMIZED_TASKS"       0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_DATA"                   0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_DATA_LOAD_BAD_LOG"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_DATA_LOAD_UNLOAD"       0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_DEBUG"                  0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_DEVELOPERS"             0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_DYNAMIC_TRANSLATIONS$"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_EFFECTIVE_USERID_MAP"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_ENTRY_POINTS"           0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_ENTRY_POINT_ARGS"       0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_FILE_OBJECTS$PART"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_FND_GROUP_USERS"        0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_FND_USER_GROUPS"        0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_FOLDERS"                0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_HNT_ARGUMENT_INFO"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_HNT_LOV_DATA"           0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_HNT_PROCEDURE_INFO"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_HTML_REPOSITORY"        0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_ICON_BAR_ATTRIBUTES"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_IMAGE_REPOSITORY"       0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_IMPORT_EXPORT"          0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_INSTALL_BUILD_OPT"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_INSTALL_CHECKS"         0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_INSTALL_SCRIPTS"        0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_JOBS"                   0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_JOB_BIND_VALUES"        0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_LOCK_PAGE"              0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_LOCK_PAGE_LOG"          0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_MAIL_ATTACHMENTS"       0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_MAIL_LOG"               0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_MAIL_QUEUE"             0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_MODELS"                 0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_MODEL_PAGES"            0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_MODEL_PAGE_COLS"        0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_MODEL_PAGE_REGIONS"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_ONLINE_HELP"            0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_ONLINE_HELP_JA"         0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_PAGES_RESERVED"         0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_PAGE_CACHE"             0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_PAGE_SUBMISSIONS"       0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_PICK_DATABASE_SIZE"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_PLATFORM_PREF"          0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_PREFERENCES$"           0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_PROVISION_COMPANY"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_PROVISION_SERICE_MOD"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_PURGED_SESSIONS$"       0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_QB_SAVED_COND"          0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_QB_SAVED_JOIN"          0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_QB_SAVED_QUERY"         0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_QB_SAVED_TABS"          0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_REGION_CHART_SER_ATTR"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_REGION_REPORT_FILTER"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_REPORT_LAYOUTS"         0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_REQUEST_VERIFICATIONS"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_REQUIRED_ROLES"         0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_RSCHEMA_EXCEPTIONS"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_SC_TRANS"               0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_SESSIONS$"              0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_SHARED_QRY_SQL_STMTS"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_SHARED_QUERIES"         0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_SHARED_WEB_SERVICES"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_SHORTCUT_USAGE_MAP"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_STEP_BRANCH_ARGS"       0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_SW_BINDS"               0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_SW_DETAIL_RESULTS"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_SW_RESULTS"             0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_SW_SQL_CMDS"            0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_SW_STMTS"               0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_TEMPLATES$"             0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_TEMPLATE_PREFERENCES"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_TEMPLATE_THEMES$"       0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_TRANSLATABLE_TEXT$"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_TREE_STATE"             0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_UPG_COL_NAME_CHANGES"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_USER_ACCESS_LOG1$"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_USER_ACCESS_LOG2$"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_VERSION$"               0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_WEB_PAGES"              0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_WEB_PG_LIST_ENTRIES"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_WEB_PG_REGIONS"         0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_WORKSHEET_CATEGORIES"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_WORKSHEET_COL_GROUPS"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_WORKSHEET_COMPUTATION"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_WORKSHEET_CONDITIONS"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_WORKSHEET_DOCS"         0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_WORKSHEET_GEOCACHE"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_WORKSHEET_HISTORY"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_WORKSHEET_LINKS"        0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_WORKSHEET_LOVS"         0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_WORKSHEET_LOV_ENTRIES"      0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_WORKSHEET_PRIVS"        0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_WORKSHEET_ROWS"         0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_WORKSHEET_STICK"        0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_WS_OPERATIONS"          0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_WS_PARAMETERS"          0 KB       0 rows

. . exported "APEX_030200"."WWV_FLOW_WS_PROCESS_PARMS_MAP"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACCESS"                  0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACC_COLUMNS"             0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACC_FORMS"               0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACC_FORMS_CONTROLS"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACC_FORMS_MODULES"       0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACC_FORMS_PERM"          0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACC_GROUPS"              0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACC_GRPSMEMBERS"         0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACC_INDEXES"             0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACC_INDEXES_COLS"        0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACC_MODULES"             0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACC_MODULES_PERM"        0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACC_PAGES"               0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACC_QUERIES"             0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACC_RELATIONS"           0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACC_RELATION_COLS"       0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACC_REPORTS"             0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACC_RPTS_CONTROLS"       0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACC_RPTS_MODULES"        0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACC_RPT_PERMS"           0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACC_TABLES"              0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACC_TAB_PERM"            0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_ACC_USERS"               0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FORMS"                   0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_ALERTS"              0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_ATTACHEDLIBRARY"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_BLK_DSA"             0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_BLK_DSC"             0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_BLK_ITEMS"           0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_BLK_ITEM_LIE"        0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_BLK_ITEM_RADIO"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_BLK_ITEM_TRIGGERS"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_BLK_RELATIONS"       0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_BLK_TRIGGERS"        0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_BLOCKS"              0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_CANVAS"              0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_CNVG_COMPOUNDTEXT"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_CNVS_GRAPHICS"       0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_CNVS_TABPAGE"        0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_COORDINATES"         0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_CPDTXT_TEXTSEGMENT"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_EDITOR"              0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_FMB_MENU"            0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_FMB_MENUITEM_ROLE"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_FMB_MENU_MENUITEM"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_FORMMODULES"         0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_LOV"                 0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_LOVCOLUMNMAPPING"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_MENU"                0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_MENUITEM_ROLE"       0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_MENUS"               0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_MENUSMODULEROLES"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_MENUS_MENUMODULES"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_MENUS_MODULES"       0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_MENUS_PROGRAMUNIT"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_MENU_MENUITEM"       0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_MODULEPARAMETER"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_MODULES"             0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_OBJECTGROUP"         0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_OBJECTGROUPCHILD"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_PROGRAMUNIT"         0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_PROPERTYCLASS"       0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_RECORDGROUPCOLUMN"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_RECORDGROUPS"        0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_REPORT"              0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_REV_APEX_APP"        0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_REV_BLK_ITEMS"       0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_REV_BLOCKS"          0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_REV_FORMMODULES"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_REV_LOV"             0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_REV_LOVCOLMAPS"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_TRIGGERS"            0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_VISUALATTRIBUTES"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_FRM_WINDOWS"             0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_GENERATED_APPLICATIONS"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB"                     0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_BLK_DATASOURCECOL"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_BLK_ITEM"            0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_BLK_ITEM_LIE"        0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_BLK_ITEM_TRIGGER"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_BLK_TRIGGER"         0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_BLOCK"               0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_CANVAS"              0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_CG_COMPOUNDTEXT"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_CG_CT_TEXTSEGMENT"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_CNVS_GRAPHICS"       0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_MODULES"             0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_OBJECTLIBRARY"       0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_OBJECTLIBRARYTAB"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_OLT_ALERT"           0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_OLT_BLK_ITEM"        0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_OLT_BLK_ITEM_TRIGR"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_OLT_BLOCK"           0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_OLT_CANVAS"          0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_OLT_CNVS_GRAPHICS"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_OLT_GRAPHICS"        0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_OLT_ITEM"            0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_OLT_MENU"            0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_OLT_MENU_MENUITEM"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_OLT_OBJECTGROUP"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_OLT_OB_OBJGRPCHILD"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_OLT_REPORT"          0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_OLT_TABPAGE"         0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_OLT_TABPG_GRAPHICS"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_OLT_VISUALATTRBUTE"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_OLT_WINDOW"          0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_PROGRAMUNIT"         0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_PROPERTYCLASS"       0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_T_TP_GGGGG_CPDTXT"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_T_TP_GGGGG_CT_TXST"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_T_TP_GGGG_CPDTXT"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_T_TP_GGGG_CT_TXSGT"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_T_TP_GGGG_GRAPHICS"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_T_TP_GGG_CPDTXT"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_T_TP_GGG_CT_TXTSGT"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_T_TP_GGG_GRAPHICS"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_T_TP_GG_CPDTXT"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_T_TP_GG_CT_TXTSGT"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_T_TP_GG_GRAPHICS"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_T_TP_G_GRAPHICS"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_VISUALATTRIBUTE"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_OLB_WINDOW"              0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_PLSQL_LIBS"              0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_PROJECTS"                0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_PROJECT_COMPONENTS"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_PROJECT_TRIGGERS"        0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_REPORT"                  0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_REV_APEXAPP"             0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_REV_FORMS"               0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_REV_QUERIES"             0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_REV_REPORTS"             0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_REV_TABLES"              0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_RPTS"                    0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_RPT_DATA"                0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_RPT_DATASRC"             0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_RPT_DATASRC_GRP"         0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_RPT_DATASRC_SELECT"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_RPT_DATA_SUMMARY"        0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_RPT_GRP_DATAITEM"        0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_RPT_GRP_DATAITEM_DESC"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_RPT_GRP_DATAITEM_PRIV"      0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_RPT_GRP_FIELD"           0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_RPT_GRP_FILTER"          0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_RPT_GRP_FORMULA"         0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_RPT_GRP_ROWDELIM"        0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_RPT_GRP_SUMMARY"         0 KB       0 rows

. . exported "APEX_030200"."WWV_MIG_RPT_REPORTPRIVATE"       0 KB       0 rows

. . exported "FLOWS_FILES"."WWV_FLOW_FILE_OBJECTS$"          0 KB       0 rows

. . exported "OLAPSYS"."CWM$ARGUMENT"                        0 KB       0 rows

. . exported "OLAPSYS"."CWM$CUBE"                            0 KB       0 rows

. . exported "OLAPSYS"."CWM$CUBEDIMENSIONUSE"                0 KB       0 rows

. . exported "OLAPSYS"."CWM$DIMENSION"                       0 KB       0 rows

. . exported "OLAPSYS"."CWM$DIMENSIONATTRIBUTE"              0 KB       0 rows

. . exported "OLAPSYS"."CWM$FACTLEVELGROUP"                  0 KB       0 rows

. . exported "OLAPSYS"."CWM$FACTLEVELUSE"                    0 KB       0 rows

. . exported "OLAPSYS"."CWM$FACTTABLEMAP"                    0 KB       0 rows

. . exported "OLAPSYS"."CWM$FACTUSE"                         0 KB       0 rows

. . exported "OLAPSYS"."CWM$FUNCTIONUSE"                     0 KB       0 rows

. . exported "OLAPSYS"."CWM$HIERARCHY"                       0 KB       0 rows

. . exported "OLAPSYS"."CWM$ITEMMAP"                         0 KB       0 rows

. . exported "OLAPSYS"."CWM$ITEMUSE"                         0 KB       0 rows

. . exported "OLAPSYS"."CWM$LEVEL"                           0 KB       0 rows

. . exported "OLAPSYS"."CWM$LEVELATTRIBUTE"                  0 KB       0 rows

. . exported "OLAPSYS"."CWM$MEASURE"                         0 KB       0 rows

. . exported "OLAPSYS"."CWM$MEASUREDIMENSIONUSE"             0 KB       0 rows

. . exported "OLAPSYS"."CWM2$AWCOMPOSITESPEC"                0 KB       0 rows

. . exported "OLAPSYS"."CWM2$AWCOMPSPECMEMBERSHIP"           0 KB       0 rows

. . exported "OLAPSYS"."CWM2$AWCUBEAGG"                      0 KB       0 rows

. . exported "OLAPSYS"."CWM2$AWCUBEAGGLEVEL"                 0 KB       0 rows

. . exported "OLAPSYS"."CWM2$AWCUBEAGGMEASURE"               0 KB       0 rows

. . exported "OLAPSYS"."CWM2$AWCUBECOMPPLAN"                 0 KB       0 rows

. . exported "OLAPSYS"."CWM2$AWCUBELOAD"                     0 KB       0 rows

. . exported "OLAPSYS"."CWM2$AWCUBELOADAGGPLAN"              0 KB       0 rows

. . exported "OLAPSYS"."CWM2$AWCUBELOADFILTER"               0 KB       0 rows

. . exported "OLAPSYS"."CWM2$AWCUBELOADMEASURE"              0 KB       0 rows

. . exported "OLAPSYS"."CWM2$AWCUBELOADPARMVALUE"            0 KB       0 rows

. . exported "OLAPSYS"."CWM2$AWDIMLOAD"                      0 KB       0 rows

. . exported "OLAPSYS"."CWM2$AWDIMLOADFILTER"                0 KB       0 rows

. . exported "OLAPSYS"."CWM2$AWDIMLOADPARMVALUE"             0 KB       0 rows

. . exported "OLAPSYS"."CWM2$AWVIEWCOLS"                     0 KB       0 rows

. . exported "OLAPSYS"."CWM2$AWVIEWS"                        0 KB       0 rows

. . exported "OLAPSYS"."CWM2$AW_DIMENSIONMAP"                0 KB       0 rows

. . exported "OLAPSYS"."CWM2$AW_MEASUREMAP"                  0 KB       0 rows

. . exported "OLAPSYS"."CWM2$CLASSIFICATIONVALUEPAIR"        0 KB       0 rows

. . exported "OLAPSYS"."CWM2$CUBE"                           0 KB       0 rows

. . exported "OLAPSYS"."CWM2$CUBEDIMENSIONUSE"               0 KB       0 rows

. . exported "OLAPSYS"."CWM2$DIMENSION"                      0 KB       0 rows

. . exported "OLAPSYS"."CWM2$DIMENSIONATTRIBUTE"             0 KB       0 rows

. . exported "OLAPSYS"."CWM2$DIMHIERLVLMAP"                  0 KB       0 rows

. . exported "OLAPSYS"."CWM2$FACTDIMHIERMAP"                 0 KB       0 rows

. . exported "OLAPSYS"."CWM2$FACTDIMHIERTPLSDTL"             0 KB       0 rows

. . exported "OLAPSYS"."CWM2$FACTKEYDIMHIERLVLMAP"           0 KB       0 rows

. . exported "OLAPSYS"."CWM2$FACTKEYDIMHIERMAP"              0 KB       0 rows

. . exported "OLAPSYS"."CWM2$HIERARCHY"                      0 KB       0 rows

. . exported "OLAPSYS"."CWM2$HIERCUSTOMSORT"                 0 KB       0 rows

. . exported "OLAPSYS"."CWM2$HIERLEVELREL"                   0 KB       0 rows

. . exported "OLAPSYS"."CWM2$LEVEL"                          0 KB       0 rows

. . exported "OLAPSYS"."CWM2$LEVELATTRIBUTE"                 0 KB       0 rows

. . exported "OLAPSYS"."CWM2$LEVELATTRIBUTEMAP"              0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MEASURE"                        0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MEASURETABLEMAP"                0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRALL_AWVIEWCOLS"               0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRALL_AWVIEWS"                  0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRALL_CATALOGS"                 0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRALL_CATALOG_ENTITY_USES"      0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRALL_CUBE_MEASURES"            0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRALL_CWM1_AGGOP"               0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRALL_CWM1_AGGORD"              0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRALL_DIM_ATTRIBUTES"           0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRALL_DIM_HIERS"                0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRALL_DIM_HIER_LEVEL_USES"      0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRALL_DIM_LEVEL_ATTR_MAPS"      0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRALL_ENTITY_DESC_USES"         0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRALL_ENTITY_EXT_PARMS"         0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRALL_ENTITY_PARAMETERS"        0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRALL_FACTTBLFCTMAPS"           0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRALL_FACTTBLKEYMAPS"           0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRALL_HIERDIMS"                 0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRALL_HIERDIM_KEYCOL_MAP"       0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRALL_HIER_CUSTOM_SORT"         0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRALL_JOIN_KEY_COL_USES"        0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRALL_LISTDIMS"                 0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRALL_OLAP2_AGG_USES"           0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRFACTTBLFCTMAPS"               0 KB       0 rows

. . exported "OLAPSYS"."CWM2$MRFACTTBLKEYMAPS"               0 KB       0 rows

. . exported "OLAPSYS"."CWM2$STOREDDIMLVLTPLS"               0 KB       0 rows

. . exported "OLAPSYS"."CWM2$STOREDDIMLVLTPLSDTL"            0 KB       0 rows

. . exported "OLAPSYS"."CWM2$_AW_NEXT_PERM_CUST_MEAS"        0 KB       0 rows

. . exported "OLAPSYS"."CWM2$_AW_PERM_CUST_MEAS_MAP"         0 KB       0 rows

. . exported "OLAPSYS"."MRAC_OLAP2_AWS_T"                    0 KB       0 rows

. . exported "OLAPSYS"."MRAC_OLAP2_AW_ATTRIBUTES_T"          0 KB       0 rows

. . exported "OLAPSYS"."MRAC_OLAP2_AW_CUBES_T"               0 KB       0 rows

. . exported "OLAPSYS"."MRAC_OLAP2_AW_CUBE_AGG_LVL_T"        0 KB       0 rows

. . exported "OLAPSYS"."MRAC_OLAP2_AW_CUBE_AGG_MEAS_T"       0 KB       0 rows

. . exported "OLAPSYS"."MRAC_OLAP2_AW_CUBE_AGG_OP_T"         0 KB       0 rows

. . exported "OLAPSYS"."MRAC_OLAP2_AW_CUBE_AGG_SPECS_T"      0 KB       0 rows

. . exported "OLAPSYS"."MRAC_OLAP2_AW_CUBE_DIM_USES_T"       0 KB       0 rows

. . exported "OLAPSYS"."MRAC_OLAP2_AW_CUBE_MEASURES_T"       0 KB       0 rows

. . exported "OLAPSYS"."MRAC_OLAP2_AW_DIMENSIONS_T"          0 KB       0 rows

. . exported "OLAPSYS"."MRAC_OLAP2_AW_DIM_LEVELS_T"          0 KB       0 rows

. . exported "OLAPSYS"."MRAC_OLAP2_AW_HIER_LVL_ORD_T"        0 KB       0 rows

. . exported "OLAPSYS"."MRAC_OLAP2_AW_MAP_ATTR_USE_T"        0 KB       0 rows

. . exported "OLAPSYS"."MRAC_OLAP2_AW_MAP_DIM_USE_T"         0 KB       0 rows

. . exported "OLAPSYS"."MRAC_OLAP2_AW_MAP_MEAS_USE_T"        0 KB       0 rows

. . exported "OLAPSYS"."MRAC_OLAP2_AW_PHYS_OBJ_PROP_T"       0 KB       0 rows

. . exported "OLAPSYS"."MRAC_OLAP2_AW_PHYS_OBJ_T"            0 KB       0 rows

. . exported "OLAPSYS"."XML_LOAD_LOG"                        0 KB       0 rows

. . exported "OLAPSYS"."XML_LOAD_RECORDS"                    0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_ANON_ATTRS_WRK"               0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_ANON_RULES_WRK"               0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_CT_ACTION_WRK"                0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_CT_DAREFS_WRK"                0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_CT_LOCATORPATHS_WRK"          0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_CT_MACRO_DEP_WRK"             0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_CT_MACRO_PAR_WRK"             0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_CT_PRED_OPRD_WRK"             0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_CT_PRED_PAR_WRK"              0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_CT_PRED_SET_WRK"              0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_CT_PRED_WRK"                  0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_CT_VLD_MSG"                   0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_DATA_MODEL_WRK"               0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_DICT_ATTRS_WRK"               0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_DOCS_WRK"                     0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_DOC_REFS_WRK"                 0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_MAPPED_PATHS"                 0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_MAPPED_PATHS_WRK"             0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_MAPPING_DOCS_WRK"             0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_PRV_ATTRS_WRK"                0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_RT_PREF_PARAMS_WRK"           0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_STD_ATTRS_WRK"                0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_STORED_TAGS"                  0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_STORED_TAGS_WRK"              0 KB       0 rows

. . exported "ORDDATA"."ORDDCM_UID_DEFS_WRK"                 0 KB       0 rows

. . exported "OUTLN"."OL$"                                   0 KB       0 rows

. . exported "OUTLN"."OL$HINTS"                              0 KB       0 rows

. . exported "OUTLN"."OL$NODES"                              0 KB       0 rows

. . exported "OWBSYS"."OWBRTPS"                              0 KB       0 rows

. . exported "SCOTT"."BONUS"                                 0 KB       0 rows

. . exported "SYSMAN"."AQ$_MGMT_LOADER_QTABLE_G"             0 KB       0 rows

. . exported "SYSMAN"."AQ$_MGMT_LOADER_QTABLE_H"             0 KB       0 rows

. . exported "SYSMAN"."AQ$_MGMT_LOADER_QTABLE_I"             0 KB       0 rows

. . exported "SYSMAN"."AQ$_MGMT_LOADER_QTABLE_L"             0 KB       0 rows

. . exported "SYSMAN"."AQ$_MGMT_LOADER_QTABLE_T"             0 KB       0 rows

. . exported "SYSMAN"."AQ$_MGMT_NOTIFY_QTABLE_G"             0 KB       0 rows

. . exported "SYSMAN"."AQ$_MGMT_NOTIFY_QTABLE_H"             0 KB       0 rows

. . exported "SYSMAN"."AQ$_MGMT_NOTIFY_QTABLE_I"             0 KB       0 rows

. . exported "SYSMAN"."AQ$_MGMT_NOTIFY_QTABLE_L"             0 KB       0 rows

. . exported "SYSMAN"."AQ$_MGMT_NOTIFY_QTABLE_T"             0 KB       0 rows

. . exported "SYSMAN"."DB_USER_PREFERENCES"                  0 KB       0 rows

. . exported "SYSMAN"."EMDW_TRACE_DATA"                      0 KB       0 rows

. . exported "SYSMAN"."EM_COMPARISON_SUMMARY"                0 KB       0 rows

. . exported "SYSMAN"."EM_IPW_INFO"                          0 KB       0 rows

. . exported "SYSMAN"."EM_PAGE_CONDITION_METADATA"           0 KB       0 rows

. . exported "SYSMAN"."EM_PAGE_CUSTOMIZATIONS"               0 KB       0 rows

. . exported "SYSMAN"."EM_PAGE_CUSTOM_CONDITIONS"            0 KB       0 rows

. . exported "SYSMAN"."EM_PAGE_CUST_METADATA"                0 KB       0 rows

. . exported "SYSMAN"."ESM_COLLECTION"                       0 KB       0 rows

. . exported "SYSMAN"."MGMT_ADMIN_METRIC_THRESHOLDS"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_AGENT_SEC_INFO"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_ANNOTATION"                      0 KB       0 rows

. . exported "SYSMAN"."MGMT_ARU_CREDENTIALS"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_AUDIT_CUSTOM_ATTRIBS"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_AUDIT_LOGS"                      0 KB       0 rows

. . exported "SYSMAN"."MGMT_AVAILABILITY_RBK"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_BACKUP_CONFIGURATION"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_BAM_DATA_HUBS"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_BAM_DATA_ISESSIONS"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_BAM_DATA_OSESSIONS"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_BAM_ISESSION_DATASOURCE"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_BAM_ISESSION_DIAG"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_BAM_ISESSION_KPIS"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_BAM_OSESSION_ALERTS"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_BAM_OSESSION_DIAG"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_BAM_OSESSION_METRICS"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_BAM_OSESSION_STATUS"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_BCN_AVAIL_DEF"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_BCN_AVAIL_JOB"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_BCN_AVAIL_LOG"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_BCN_BCNSTEP_PROPS"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_BCN_BCNTXN_PROPS"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_BCN_STEPGROUP_DEFN"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_BCN_STEPGROUP_STEPS"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_BCN_STEP_DEFN"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_BCN_STEP_PROPS"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_BCN_TARGET"                      0 KB       0 rows

. . exported "SYSMAN"."MGMT_BCN_TXN_AUDIT"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_BCN_TXN_DEFN"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_BCN_TXN_PROPS"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_BLACKOUTS"                       0 KB       0 rows

. . exported "SYSMAN"."MGMT_BLACKOUT_FLAT_TARGETS"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_BLACKOUT_HISTORY"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_BLACKOUT_SCHEDULE"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_BLACKOUT_STATE"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_BLACKOUT_TARGET_DETAILS"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_BLACKOUT_WINDOWS"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_BSLN_BASELINES"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_BSLN_DATASOURCES"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_BSLN_INTERVALS"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_BSLN_RAWDATA"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_BSLN_STATISTICS"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_BSLN_THRESHOLD_PARMS"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_BUG_ADVISORY"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_BUG_ADVISORY_BUG"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_BUG_ADV_HOME_PATCH"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_BUG_AVAILABLE_PATCH"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_BUG_FIX_APPLICABLE_COMP"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_BUG_FIX_APPLIC_COMP_LIST"        0 KB       0 rows

. . exported "SYSMAN"."MGMT_BUG_PATCH_CERTIFICATE"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_BUG_PATCH_FIXES_BUG"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_BUG_PATCH_PLATFORM"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_CHANGE_AGENT_URL"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_BASELINES"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_BASELINE_CONS_GROUPS"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_BASELINE_DEPENDENCIES"        0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_BASELINE_DEPENDENTS"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_BASELINE_INIT_PARAMS"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_BASELINE_OBJECTS"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_BASELINE_OBJGRANTS"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_BASELINE_PROXYGRANTS"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_BASELINE_QUOTAGRANTS"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_BASELINE_ROLEGRANTS"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_BASELINE_SYSGRANTS"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_BASELINE_VERSIONS"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_COMPARISONS"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_COMPARISON_INIT_PRMS"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_COMPARISON_OBJECTS"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_COMPARISON_VERSIONS"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_SCHEMA_MAPS"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_SCOPESPECS"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_SCOPESPEC_NAMES"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_SYNCHRONIZATIONS"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_SYNCH_IMPACT_REPORTS"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_SYNCH_OBJECTS"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_SYNCH_SCRIPTS"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_CM_SYNCH_VERSIONS"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_COLLECTION_CREDENTIALS"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_COLLECTION_TASK_CONTEXT"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_COLLECTION_TEMPLATE_CREDS"       0 KB       0 rows

. . exported "SYSMAN"."MGMT_COLLECTION_WORKERS"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_COLL_ITEM_PROPERTIES"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_COMP_RESULT_TO_JOB_MAP"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_COMP_SNAPSHOT_TO_STEP_MAP"       0 KB       0 rows

. . exported "SYSMAN"."MGMT_CONFIG_ACTIVITIES"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_CONTAINER_CREDENTIALS"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_CPF_METRIC_SOURCE"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_CREDENTIALS"                     0 KB       0 rows

. . exported "SYSMAN"."MGMT_CREDENTIALS2"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_CSTMZ_CHARTS"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_CSTMZ_CHART_SELTARGETS"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_CSTMZ_CUSTOM_COLUMNS"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_CSTMZ_DEFAULT_CHART"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_CSTMZ_SUMMARY_CHART_DEF"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_CS_EVAL_SUMM_RQS"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_CS_EVAL_SUMM_RULE"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_CS_EVAL_SUMM_RULEFOLDER"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_CS_INCLUSION"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_CS_INCLUSION_PARAMETER"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_CS_PARAMETER"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_CS_PARAMETER_CHOICES"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_CS_REUSABLE_QUERY"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_CS_RQS_HIERARCHY"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_CS_RQS_INCLUSION"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_CS_RULE_FIX_LINK"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_CS_RULE_SIMPLE_TEST"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_CS_RULE_VIOL_CTX"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_CS_SCHEDULED_EVAL"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_CURRENT_METRICS"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_CURRENT_METRIC_ERRORS"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_CURRENT_VIOLATION"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_DBNET_TNS_ADMINS"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_DB_CONTROLFILES_ECM"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_DB_DATAFILES_ECM"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_DB_DBNINSTANCEINFO_ECM"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_DB_FEATUREUSAGE"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_DB_HDM_METRIC_HELPER"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_DB_INIT_PARAMS_ECM"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_DB_INVOBJS_ECM"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_DB_LATEST_HDM_FINDINGS"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_DB_LICENSE_ECM"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_DB_OPTIONS_ECM"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_DB_RECSEGMENTSETTINGS_ECM"       0 KB       0 rows

. . exported "SYSMAN"."MGMT_DB_RECTSSETTINGS_ECM"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_DB_RECUSERSETTINGS_ECM"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_DB_REDOLOGS_ECM"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_DB_ROLLBACK_SEGS_ECM"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_DB_SGA_ECM"                      0 KB       0 rows

. . exported "SYSMAN"."MGMT_DB_TABLESPACES_ECM"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_DELTA_COMPARISON_DELTAS"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_DELTA_COMP_DELTA_DETAILS"        0 KB       0 rows

. . exported "SYSMAN"."MGMT_DELTA_COMP_KEY_COLS"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_DELTA_COMP_PROPERTIES"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_DELTA_SUMMARY_ERRORS"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_DELTA_COMP_SUMMARIES"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_DELTA_ENTRY"                     0 KB       0 rows

. . exported "SYSMAN"."MGMT_DELTA_ENTRY_VALUES"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_DELTA_IDS"                       0 KB       0 rows

. . exported "SYSMAN"."MGMT_DELTA_ID_VALUES"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_DELTA_SAVED_COMPARISON"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_DELTA_SNAP"                      0 KB       0 rows

. . exported "SYSMAN"."MGMT_DIROBJ_USERS_HOTLIST"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_DM_COLUMN_RULES"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_DM_INFCONS_COLUMNS"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_DM_JOB_EXECUTIONS"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_DM_SCOPESPECS"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_DM_SS_COLUMNS"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_DUPLICATE_TARGETS"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_E2E_DETAILS"                     0 KB       0 rows

. . exported "SYSMAN"."MGMT_E2E_DETAILS_1DAY"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_E2E_DETAILS_1HOUR"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_E2E_JDBC"                        0 KB       0 rows

. . exported "SYSMAN"."MGMT_E2E_JDBC_1DAY"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_E2E_JDBC_1HOUR"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_E2E_SQL"                         0 KB       0 rows

. . exported "SYSMAN"."MGMT_E2E_SQL_1DAY"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_E2E_SQL_1HOUR"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_E2E_SQL_CONN"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_E2E_SQL_STMT"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_E2E_SUMMARY"                     0 KB       0 rows

. . exported "SYSMAN"."MGMT_E2E_SUMMARY_1DAY"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_E2E_SUMMARY_1HOUR"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_CLUSTER_NODE_INFO"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_CSA"                         0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_CSA_APPID_TARGET_MAP"        0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_CSA_COOKIES"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_CSA_CUSTOM"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_CSA_FAILED"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_CSA_GENERAL_INFO"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_CSA_RULES"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_CSA_SNAPSHOT_INFO"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_GEN_SNAPSHOT"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_HOSTPATCH_COMPL_HIST"        0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_HOSTPATCH_GROUPS"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_HOSTPATCH_GROUP_REPOS"       0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_HOSTPATCH_HOSTS"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_HOSTPATCH_HOST_COMPL"        0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_HOSTPATCH_REPOS"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_HOSTPATCH_REPOS_PKGS"        0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_HOST_CONFIGS_TO_DEL"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_HW"                          0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_HW_CPU"                      0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_HW_IOCARD"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_HW_NIC"                      0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_LOADED_FILES"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_OS"                          0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_OS_COMPONENT"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_OS_FILESYSTEM"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_OS_PROPERTY"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_OS_REGISTERED_SW"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_OS_REGISTERED_SW_COMP"       0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_PATCH_CACHE"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_SAVEDHOSTCONFIG"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_SNAPSHOT"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_SNAP_COMPONENT_INFO"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_ULN_CHANNELS"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_ULN_CHANNEL_PKGS"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_ULN_CH_ADV"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_ULN_SS_CHANNELS"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_ECM_ULN_STAGE_SERVERS"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_EMD_PING"                        0 KB       0 rows

. . exported "SYSMAN"."MGMT_EMD_PING_CHECK"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_EMX_CELL_CD_CONFIG"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_EMX_CELL_C_CONFIG"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_EMX_CELL_GD_CONFIG"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_EMX_CELL_IORM_CONFIG"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_EMX_CELL_L_CONFIG"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_EMX_CELL_PD_CONFIG"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_ENTERPRISE_CREDENTIALS"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_ESA_REPORT"                      0 KB       0 rows

. . exported "SYSMAN"."MGMT_FAILED_CONFIG_ACTIVITIES"        0 KB       0 rows

. . exported "SYSMAN"."MGMT_FAILOVER_TABLE"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_FEATURES_MAPPING"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_FEATURE_PATCHES"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_FLAT_ROLE_GRANTS"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_FLAT_TARGET_ASSOC"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_GENSVC_AVAIL_BEACONS"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_GENSVC_AVAIL_CONFIG"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_GENSVC_AVAIL_EVENTS"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_GENSVC_AVAIL_JOB"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_GENSVC_AVAIL_TESTS"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_GENSVC_JOBS_DETAILS"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_GENSVC_TEST_AVAIL"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_GENSVC_TEST_AVAIL_MARKER"        0 KB       0 rows

. . exported "SYSMAN"."MGMT_GENSVC_TEST_CUR_AVAIL"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_GENSVC_TMPL_VARS"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_GENSVC_UPDBCN_JOB"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_GENSVC_UPDBCN_JOB_TESTS"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_GROUP_CHART"                     0 KB       0 rows

. . exported "SYSMAN"."MGMT_GROUP_CHART_SELTARGETS"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_GROUP_CUSTOM_COLUMNS"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_GROUP_SUMMARY_CHART_DEF"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_HA_BACKUP"                       0 KB       0 rows

. . exported "SYSMAN"."MGMT_HA_CLS_INTR_CONN"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_HA_DG_TARGET_SUMMARY"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_HA_FILES_ECM"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_HA_INFO_ECM"                     0 KB       0 rows

. . exported "SYSMAN"."MGMT_HA_INIT_PARAMS_ECM"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_HA_MTTR"                         0 KB       0 rows

. . exported "SYSMAN"."MGMT_HA_RAC_INTR_CONN"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_HA_RMAN_CONFIG_ECM"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_HC_CPU_DETAILS"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_HC_FS_MOUNT_DETAILS"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_HC_HARDWARE_MASTER"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_HC_IOCARD_DETAILS"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_HC_NIC_DETAILS"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_HC_OS_COMPONENTS"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_HC_OS_PROPERTIES"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_HC_OS_SUMMARY"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_HC_SYSTEM_SUMMARY"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_HC_VENDOR_SW_COMPONENTS"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_HC_VENDOR_SW_SUMMARY"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_HOST_CREDENTIALS"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_HTTP_SESSION_OBJECTS"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_INDEX_SIZES"                     0 KB       0 rows

. . exported "SYSMAN"."MGMT_INV_COMPONENT"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_INV_COMPONENT_PATCH"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_INV_CONTAINER"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_INV_CONTAINER_PROPERTY"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_INV_DEPENDENCY_RULE"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_INV_FILE"                        0 KB       0 rows

. . exported "SYSMAN"."MGMT_INV_PATCH"                       0 KB       0 rows

. . exported "SYSMAN"."MGMT_INV_PATCHED_FILE"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_INV_PATCHED_FILE_COMP"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_INV_PATCHSET"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_INV_PATCH_FIXED_BUG"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_INV_SUMMARY"                     0 KB       0 rows

. . exported "SYSMAN"."MGMT_INV_VERSIONED_PATCH"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_IP_EMAIL_REPORT"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_IP_PURGE_POLICY"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_IP_REPORT_ELEM_IMAGE"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_IP_REPORT_ELEM_TARGETS"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_IP_STORED_REPORT"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_JOB_ASSOC_PARAMS"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_JOB_BLACKOUT_ASSOC"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_JOB_CREDENTIALS"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_JOB_EMD_STATUS_QUEUE"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_JOB_EXEC_CRED_INFO"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_JOB_EXEC_EVENT_PARAMS"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_JOB_EXEC_LOCKS"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_JOB_EXT_TARGETS"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_JOB_FLAT_TARGETS"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_JOB_NOTIFY_STATES"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_JOB_OUTPUT"                      0 KB       0 rows

. . exported "SYSMAN"."MGMT_JOB_PURGE_TARGETS"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_JOB_QUEUES"                      0 KB       0 rows

. . exported "SYSMAN"."MGMT_JOB_STEP_COMMAND_LOG"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_JOB_STEP_TARGETS"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_JOB_TARGET"                      0 KB       0 rows

. . exported "SYSMAN"."MGMT_JOB_TYPE_DISPLAY_PARAM"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_JOB_TYPE_PARAM_DROPDOWNS"        0 KB       0 rows

. . exported "SYSMAN"."MGMT_LAST_SYNC_LOAD_DETAILS"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_LAST_VIOLATION"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_LICENSED_TARGETS"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_LICENSES"                        0 KB       0 rows

. . exported "SYSMAN"."MGMT_LICENSE_CONFIRMATION"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_LOADER_QTABLE"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_LONG_TEXT"                       0 KB       0 rows

. . exported "SYSMAN"."MGMT_MANAGEMENT_PLUGINS"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_MASTER_AGENT"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_MESSAGES"                        0 KB       0 rows

. . exported "SYSMAN"."MGMT_METRICS_1DAY"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_METRICS_1HOUR"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_METRICS_RAW"                     0 KB       0 rows

. . exported "SYSMAN"."MGMT_METRIC_COLLECTIONS_REP"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_METRIC_DEPENDENCY"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_METRIC_DEPENDENCY_DETAILS"       0 KB       0 rows

. . exported "SYSMAN"."MGMT_METRIC_ERRORS"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_MNTR_SET_COPIES"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_MP_CONTRIBUTORS"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_MP_CONTRIBUTOR_FILE"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_MP_DEPLOYMENTS"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_MP_DEPLOYMENT_ERRORS"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_MP_FILES"                        0 KB       0 rows

. . exported "SYSMAN"."MGMT_MP_FILE_PROPS"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_MP_GROUPS"                       0 KB       0 rows

. . exported "SYSMAN"."MGMT_MP_GROUP_MEMBERS"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_MP_MECHANISMS"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_MP_NLS_SUBSTITUTIONS"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_MP_PROPS"                        0 KB       0 rows

. . exported "SYSMAN"."MGMT_NESTED_JOB_CRED_INFO"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_NET_EVENTS"                      0 KB       0 rows

. . exported "SYSMAN"."MGMT_NOTIFICATION_LOG"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_NOTIFY_DEVICES"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_NOTIFY_DEVICE_PARAMS"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_NOTIFY_DEV_SCHEDULES"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_NOTIFY_EMAIL_GATEWAY"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_NOTIFY_INPUT_QTABLE"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_NOTIFY_NOTIFYEES"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_NOTIFY_QTABLE"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_NOTIFY_REQUEUE"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_NOTIFY_SCHEDULES"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_OB_ADMIN_CLIENT_DB"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_OMS_PARAMETERS"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_OSM_DISK_GROUP_ECM"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_PAF_ENCRYPTED_STRINGS"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_PAF_INSTANCES"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_PAF_MSG_QTABLE_1"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_PAF_MSG_QTABLE_2"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_PAF_NOTIFICATION_LOG"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_PAF_OMS_STATUS"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_PAF_PAR_FILES"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_PAF_STATES"                      0 KB       0 rows

. . exported "SYSMAN"."MGMT_PDP_HOST_SETTING"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_PDP_SETTINGS"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_PDP_SETTING_VALUES"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_PLANPROBLEM_FACTORS"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_POLICY_ASSOC_EVAL_DETAILS"       0 KB       0 rows

. . exported "SYSMAN"."MGMT_POLICY_ASSOC_EVAL_SUMM"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_PROV_ASN_DEPENDENCIES"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_PROV_ASN_TARGETS"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_PROV_ASSIGNMENT"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_PROV_BOOTSERVER"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_PROV_CLUSTER"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_PROV_CLUSTER_NODES"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_PROV_COLLECTION"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_PROV_DEFAULT_IMAGE"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_PROV_HARDWARE"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_PROV_HISTORY"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_PROV_IP_RANGE"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_PROV_IP_RESERVED"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_PROV_NET_CONFIG"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_PROV_OPERATION"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_PROV_RPM_REP"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_PROV_STAGED_COMPS"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_PROV_STAGING_DIRS"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_PROV_SUITE_INSTANCE"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_PROV_SUITE_INST_MEMBERS"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_PROV_TGT_STATUS"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_RAC_SERVICES"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_RCA_EVENT"                       0 KB       0 rows

. . exported "SYSMAN"."MGMT_RCA_EVENT_ASSOC"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_RCA_METRIC_PROPS"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_RCA_METRIC_TEST"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_RCA_RECOVERY"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_RCA_RUN"                         0 KB       0 rows

. . exported "SYSMAN"."MGMT_RCA_SUMMARY"                     0 KB       0 rows

. . exported "SYSMAN"."MGMT_RCA_TARGET_PROPS"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_RCA_TEST_RESULT"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_RCA_TRACE"                       0 KB       0 rows

. . exported "SYSMAN"."MGMT_RCVCAT_CONFIG"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_RCVCAT_REPOS"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_REPOS_TIME_COEFFICIENT"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_COOKIE_DATA"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_DOMAIN_1DAY"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_DOMAIN_1HOUR"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_DOMAIN_BOOTSTRAP"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_DOMAIN_DIST_1DAY"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_DOMAIN_DIST_1HOUR"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_DOMAIN_DIST_BOOTSTRAP"        0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_INCOMPLETE_LOADS"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_INCOMPLETE_LOADS_1DAY"        0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_INCOMPLETE_LOADS_1HOUR"       0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_IP_1DAY"                      0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_IP_1HOUR"                     0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_IP_BOOTSTRAP"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_IP_DIST_1DAY"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_IP_DIST_1HOUR"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_IP_DIST_BOOTSTRAP"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_METRICS_RAW"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_PR_MAPPING"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_PR_MAPPING_1DAY"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_PR_MAPPING_1HOUR"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_REGIONS"                      0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_REGION_ENTRIES"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_REGION_MAPPING"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_TARGET_PROPERTIES"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_URLS"                         0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_URL_1DAY"                     0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_URL_1HOUR"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_URL_BOOTSTRAP"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_URL_DIST_1DAY"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_URL_DIST_1HOUR"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_RT_URL_DIST_BOOTSTRAP"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_SEVERITY_RBK"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_SL_METRICS"                      0 KB       0 rows

. . exported "SYSMAN"."MGMT_SL_METRICS_HISTORY"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_SL_RULES"                        0 KB       0 rows

. . exported "SYSMAN"."MGMT_SL_RULES_HISTORY"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_SPACE_METRICS"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_SQLPROBLEM_FACTORS"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_SQL_BIND_VARS"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_SQL_EVALUATION"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_SQL_METRIC_HELPER"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_SQL_PLAN"                        0 KB       0 rows

. . exported "SYSMAN"."MGMT_SQL_REUSE"                       0 KB       0 rows

. . exported "SYSMAN"."MGMT_SQL_SUMMARY"                     0 KB       0 rows

. . exported "SYSMAN"."MGMT_STORAGE_REPORT_ALIAS"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_STORAGE_REPORT_DATA"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_STORAGE_REPORT_ISSUES"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_STORAGE_REPORT_KEYS"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_STRING_METRIC_HISTORY"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_SWLIB_DATA_DIRECTORIES"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_SWLIB_ENTITIES"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_SWLIB_ENTITY_DATA"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_SWLIB_ENTITY_DOCUMENTS"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_SWLIB_ENTITY_PARAMETERS"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_SWLIB_ENTITY_PLATFORMS"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_SWLIB_ENTITY_REFERENCES"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_SWLIB_ENTITY_REVISIONS"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_SWLIB_MATURITY_STATUS"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_SWLIB_REVISION_PARAMETERS"       0 KB       0 rows

. . exported "SYSMAN"."MGMT_SYSTEM_CHANGES"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_SYSTEM_ERROR_LOG"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_TABLE_SIZES"                     0 KB       0 rows

. . exported "SYSMAN"."MGMT_TARGETS_DELETE"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_TARGET_AGENT_ASSOC"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_TARGET_ASSOC"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_TARGET_ASSOCS"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_TARGET_ASSOC_ERROR"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_TARGET_ASSOC_INSTANCE"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_TARGET_ASSOC_PROP"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_TARGET_ASSOC_PROP_DEFS"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_TARGET_ASSOC_STATUS"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_TARGET_BASELINES"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_TARGET_BASELINES_DATA"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_TARGET_CREDENTIALS"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_TARGET_DELETE_CALLBACKS"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_TARGET_PENDING_ASSOCS"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_TARGET_PROPERTIES"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_TEMPLATES"                       0 KB       0 rows

. . exported "SYSMAN"."MGMT_TEMPLATE_COPIES"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_TEST"                            0 KB       0 rows

. . exported "SYSMAN"."MGMT_TEST_DEFAULT_PROMOTION"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_TEST_DEFAULT_THRESHOLDS"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_TEST_MCOLUMNS"                   0 KB       0 rows

. . exported "SYSMAN"."MGMT_TEST_METRICS"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_TEST_METRIC_PROPS"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_TEST_PROP"                       0 KB       0 rows

. . exported "SYSMAN"."MGMT_TEST_PROP_CHOICES"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_TEST_PROP_LEVEL"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_TEST_PROP_QUALIFIERS"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_TEST_PROP_UIGROUP"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_TEST_QUALIFIERS"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_TEST_TARGET_MAP"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_TEXTINDEX"                       0 KB       0 rows

. . exported "SYSMAN"."MGMT_TEXTINDEX_LOGS_INFO"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_TEXT_INDEX_STATS"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_TOPO_PAGE_BG_IMAGE"              0 KB       0 rows

. . exported "SYSMAN"."MGMT_TOPO_PAGE_OBJ_POS"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_TOPO_PAGE_PREF"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_UPDATE_COLL_CREDS_DATA"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_UPDATE_CREDENTIALS_DATA"         0 KB       0 rows

. . exported "SYSMAN"."MGMT_UPDATE_OPERATIONS"               0 KB       0 rows

. . exported "SYSMAN"."MGMT_UPDATE_OPERATIONS_DATA"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_UPDATE_OPERATIONS_DETAILS"       0 KB       0 rows

. . exported "SYSMAN"."MGMT_UPDATE_PDP_DATA"                 0 KB       0 rows

. . exported "SYSMAN"."MGMT_UPDATE_PDP_DATA_COPY"            0 KB       0 rows

. . exported "SYSMAN"."MGMT_UPDATE_PDP_DATA_MAP"             0 KB       0 rows

. . exported "SYSMAN"."MGMT_UPDATE_PROPERTIES_DATA"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_UPDATE_TEMPLATE_DATA_MAP"        0 KB       0 rows

. . exported "SYSMAN"."MGMT_UPDATE_THRESHOLDS_DATA"          0 KB       0 rows

. . exported "SYSMAN"."MGMT_URL_CACHE"                       0 KB       0 rows

. . exported "SYSMAN"."MGMT_URL_PROXY"                       0 KB       0 rows

. . exported "SYSMAN"."MGMT_USER_JOBS"                       0 KB       0 rows

. . exported "SYSMAN"."MGMT_USER_PREFERENCES"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_USER_REPORT_DEFS"                0 KB       0 rows

. . exported "SYSMAN"."MGMT_USER_SESSION"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_USER_TARGETS"                    0 KB       0 rows

. . exported "SYSMAN"."MGMT_USER_TEMPLATES"                  0 KB       0 rows

. . exported "SYSMAN"."MGMT_VIEW_USER_CREDENTIALS"           0 KB       0 rows

. . exported "SYSMAN"."MGMT_VIOLATIONS"                      0 KB       0 rows

. . exported "SYSMAN"."MGMT_VIOLATION_CONTEXT"               0 KB       0 rows

. . exported "SYSTEM"."DEF$_AQCALL"                          0 KB       0 rows

. . exported "SYSTEM"."DEF$_AQERROR"                         0 KB       0 rows

. . exported "SYSTEM"."DEF$_CALLDEST"                        0 KB       0 rows

. . exported "SYSTEM"."DEF$_DEFAULTDEST"                     0 KB       0 rows

. . exported "SYSTEM"."DEF$_DESTINATION"                     0 KB       0 rows

. . exported "SYSTEM"."DEF$_ERROR"                           0 KB       0 rows

. . exported "SYSTEM"."DEF$_LOB"                             0 KB       0 rows

. . exported "SYSTEM"."DEF$_ORIGIN"                          0 KB       0 rows

. . exported "SYSTEM"."DEF$_PROPAGATOR"                      0 KB       0 rows

. . exported "SYSTEM"."DEF$_PUSHED_TRANSACTIONS"             0 KB       0 rows

. . exported "SYSTEM"."MVIEW$_ADV_INDEX"                     0 KB       0 rows

. . exported "SYSTEM"."MVIEW$_ADV_PARTITION"                 0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_AUDIT_COLUMN"                 0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_COLUMN_GROUP"                 0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_CONFLICT"                     0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_DDL"                          0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_EXCEPTIONS"                   0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_EXTENSION"                    0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_FLAVORS"                      0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_FLAVOR_OBJECTS"               0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_GENERATED"                    0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_GROUPED_COLUMN"               0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_INSTANTIATION_DDL"            0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_KEY_COLUMNS"                  0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_OBJECT_PARMS"                 0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_PARAMETER_COLUMN"             0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_PRIORITY"                     0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_PRIORITY_GROUP"               0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_REFRESH_TEMPLATES"            0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_REPCAT"                       0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_REPCATLOG"                    0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_REPCOLUMN"                    0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_REPGROUP_PRIVS"               0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_REPOBJECT"                    0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_REPPROP"                      0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_REPSCHEMA"                    0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_RESOLUTION"                   0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_RESOLUTION_STATISTICS"        0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_RESOL_STATS_CONTROL"          0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_RUNTIME_PARMS"                0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_SITES_NEW"                    0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_SITE_OBJECTS"                 0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_SNAPGROUP"                    0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_TEMPLATE_OBJECTS"             0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_TEMPLATE_PARMS"               0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_TEMPLATE_REFGROUPS"           0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_TEMPLATE_SITES"               0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_TEMPLATE_TARGETS"             0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_USER_AUTHORIZATIONS"          0 KB       0 rows

. . exported "SYSTEM"."REPCAT$_USER_PARM_VALUES"             0 KB       0 rows

. . exported "SYSTEM"."SQLPLUS_PRODUCT_PROFILE"              0 KB       0 rows

Processing object type DATABASE_EXPORT/SYSTEM_PROCOBJACT/PRE_SYSTEM_ACTIONS/PROCACT_SYSTEM

Processing object type DATABASE_EXPORT/SYSTEM_PROCOBJACT/PROCOBJ

Processing object type DATABASE_EXPORT/SYSTEM_PROCOBJACT/POST_SYSTEM_ACTIONS/PROCACT_SYSTEM

Processing object type DATABASE_EXPORT/SCHEMA/PROCACT_SCHEMA

Processing object type DATABASE_EXPORT/SCHEMA/TABLE/TABLE

Processing object type DATABASE_EXPORT/SCHEMA/TABLE/PRE_TABLE_ACTION

Processing object type DATABASE_EXPORT/SCHEMA/TABLE/GRANT/OWNER_GRANT/OBJECT_GRANT

Processing object type DATABASE_EXPORT/SCHEMA/TABLE/INDEX/INDEX

Processing object type DATABASE_EXPORT/SCHEMA/TABLE/CONSTRAINT/CONSTRAINT

Processing object type DATABASE_EXPORT/SCHEMA/TABLE/INDEX/STATISTICS/INDEX_STATISTICS

Processing object type DATABASE_EXPORT/SCHEMA/TABLE/COMMENT

Processing object type DATABASE_EXPORT/SCHEMA/TABLE/AUDIT_OBJ

Processing object type DATABASE_EXPORT/SCHEMA/PACKAGE/PACKAGE_SPEC

Processing object type DATABASE_EXPORT/SCHEMA/PACKAGE/GRANT/OWNER_GRANT/OBJECT_GRANT

Processing object type DATABASE_EXPORT/SCHEMA/FUNCTION/FUNCTION

Processing object type DATABASE_EXPORT/SCHEMA/FUNCTION/GRANT/OWNER_GRANT/OBJECT_GRANT

Processing object type DATABASE_EXPORT/SCHEMA/PROCEDURE/PROCEDURE

Processing object type DATABASE_EXPORT/SCHEMA/PROCEDURE/GRANT/OWNER_GRANT/OBJECT_GRANT

Processing object type DATABASE_EXPORT/SCHEMA/FUNCTION/ALTER_FUNCTION

Processing object type DATABASE_EXPORT/SCHEMA/PROCEDURE/ALTER_PROCEDURE

Processing object type DATABASE_EXPORT/SCHEMA/VIEW/VIEW

Processing object type DATABASE_EXPORT/SCHEMA/VIEW/GRANT/OWNER_GRANT/OBJECT_GRANT

Processing object type DATABASE_EXPORT/SCHEMA/VIEW/COMMENT

Processing object type DATABASE_EXPORT/SCHEMA/TABLE/CONSTRAINT/REF_CONSTRAINT

Processing object type DATABASE_EXPORT/SCHEMA/PACKAGE_BODIES/PACKAGE/PACKAGE_BODY

Processing object type DATABASE_EXPORT/SCHEMA/TYPE/TYPE_BODY

Processing object type DATABASE_EXPORT/SCHEMA/TABLE/INDEX/FUNCTIONAL_AND_BITMAP/INDEX

Processing object type DATABASE_EXPORT/SCHEMA/TABLE/INDEX/STATISTICS/FUNCTIONAL_AND_BITMAP/INDEX_STATISTICS

Processing object type DATABASE_EXPORT/SCHEMA/TABLE/STATISTICS/TABLE_STATISTICS

Processing object type DATABASE_EXPORT/SCHEMA/TABLE/POST_TABLE_ACTION

Processing object type DATABASE_EXPORT/SCHEMA/TABLE/TRIGGER

Processing object type DATABASE_EXPORT/SCHEMA/VIEW/TRIGGER

Processing object type DATABASE_EXPORT/SCHEMA/EVENT/TRIGGER

Processing object type DATABASE_EXPORT/SCHEMA/MATERIALIZED_VIEW

Processing object type DATABASE_EXPORT/SCHEMA/JOB

Processing object type DATABASE_EXPORT/SCHEMA/TABLE/POST_INSTANCE/PROCACT_INSTANCE

Processing object type DATABASE_EXPORT/SCHEMA/TABLE/POST_INSTANCE/PROCDEPOBJ

Processing object type DATABASE_EXPORT/SCHEMA/POST_SCHEMA/PROCOBJ

Processing object type DATABASE_EXPORT/SCHEMA/POST_SCHEMA/PROCACT_SCHEMA

Processing object type DATABASE_EXPORT/AUDIT

Master table "SYS"."SYS_EXPORT_FULL_01" successfully loaded/unloaded

******************************************************************************

Dump file set for SYS.SYS_EXPORT_FULL_01 is:

  /ocm/logicalbak/full_01.dmp

  /ocm/logicalbak/full_02.dmp

Job "SYS"."SYS_EXPORT_FULL_01" successfully completed at 10:17:48

[oracle@db logicalbak]$ expdp   full=y  directory=dir_18 dumpfile=full_%u.dmp parallel=2

[oracle@db logicalbak]$ expdp   full=y directory=dir_18 dumpfile=db.dmp

Export: Release 11.2.0.1.0 - Production on Sun Mar 18 10:19:11 2012

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

Username: scott  >>>low privilege for SCOTT to export full database

Password: 

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

ORA-31631: privileges are required

ORA-39161: Full database jobs require privileges

[oracle@db logicalbak]$ rlwrap sqlplus  / as sysdba

SQL*Plus: Release 11.2.0.1.0 Production on Sun Mar 18 10:19:37 2012

Copyright (c) 1982, 2009, Oracle.  All rights reserved.

Connected to:

Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> grant exp_full_database to scott; >>>???exp_full_database is role,find it?,exp_full_data is a role used to grant to a user who can have this ability

Grant succeeded.

SQL> exit

Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

[oracle@db logicalbak]$ expdp   full=y directory=dir_18 dumpfile=db.dmp

Export: Release 11.2.0.1.0 - Production on Sun Mar 18 10:19:55 2012

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

Username: scott >>>now,Scott can export the full database after be granted

Password: 

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

Starting "SCOTT"."SYS_EXPORT_FULL_01":  scott/******** full=y directory=dir_18 dumpfile=db.dmp 

Estimate in progress using BLOCKS method...

Processing object type DATABASE_EXPORT/SCHEMA/TABLE/TABLE_DATA

Total estimation using BLOCKS method: 56.06 MB

Processing object type DATABASE_EXPORT/TABLESPACE

Processing object type DATABASE_EXPORT/PROFILE

Processing object type DATABASE_EXPORT/SYS_USER/USER

Processing object type DATABASE_EXPORT/SCHEMA/USER

Processing object type DATABASE_EXPORT/ROLE

Processing object type DATABASE_EXPORT/GRANT/SYSTEM_GRANT/PROC_SYSTEM_GRANT

Processing object type DATABASE_EXPORT/SCHEMA/GRANT/SYSTEM_GRANT

Processing object type DATABASE_EXPORT/SCHEMA/ROLE_GRANT

Processing object type DATABASE_EXPORT/SCHEMA/DEFAULT_ROLE

Processing object type DATABASE_EXPORT/SCHEMA/TABLESPACE_QUOTA

Processing object type DATABASE_EXPORT/RESOURCE_COST

Processing object type DATABASE_EXPORT/TRUSTED_DB_LINK

Processing object type DATABASE_EXPORT/SCHEMA/SEQUENCE/SEQUENCE

Processing object type DATABASE_EXPORT/SCHEMA/SEQUENCE/GRANT/OWNER_GRANT/OBJECT_GRANT

Processing object type DATABASE_EXPORT/DIRECTORY/DIRECTORY

Export> 

Export> exit

[oracle@db logicalbak]$ rlwrap sqlplus  / as sysdba

SQL*Plus: Release 11.2.0.1.0 Production on Sun Mar 18 10:22:40 2012

Copyright (c) 1982, 2009, Oracle.  All rights reserved.

Connected to:

Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> show parameter processes

NAME                                 TYPE        VALUE

------------------------------------ ----------- ------------------------------

aq_tm_processes                      integer     0

db_writer_processes                  integer     1

gcs_server_processes                 integer     0

global_txn_processes                 integer     1

job_queue_processes                  integer     10

log_archive_max_processes            integer     4

processes                            integer     100

SQL> show parameter session

NAME                                 TYPE        VALUE

------------------------------------ ----------- ------------------------------

java_max_sessionspace_size           integer     0

java_soft_sessionspace_limit         integer     0

license_max_sessions                 integer     0

license_sessions_warning             integer     0

session_cached_cursors               integer     50

session_max_open_files               integer     10

sessions                             integer     172

shared_server_sessions               integer

SQL> select count(*) from v$session;

  COUNT(*)

----------

        32

SQL> select count(*) from v$session where username is not null;

  COUNT(*)

----------

         3

SQL> /

  COUNT(*)

----------

         3

SQL> select username,machine from v$session where username is not null; >>>

USERNAME MACHINE

-----------------------------                  ----------------------------------------------------------------

SYS db.oracle.com

SCOTT db.oracle.com

SCOTT db.oracle.com

SQL> show parameter DB_BLOCK_CHECKING 

NAME                                 TYPE        VALUE

------------------------------------ ----------- ------------------------------

db_block_checking                    string      FALSE

SQL> show parameter   DB_BLOCK_%sum%

NAME                                 TYPE        VALUE

------------------------------------ ----------- ------------------------------

db_block_checksum                    string      TYPICAL

SQL> flase 

SQL> alter system  set db_block_checking=true;

System altered.

SQL> show parameter DB_BLOCK_CHECKING 

NAME                                 TYPE        VALUE

------------------------------------ ----------- ------------------------------

db_block_checking                    string      TRUE

SQL> alter system set db_block_checking=false;

System altered.

SQL> drop table scott.emp;

Table dropped.

SQL> select * from scott.emp;

Select * from scott.emp

                    *

ERROR at line 1:

ORA-00942: table or view does not exist

SQL> exit

Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

[oracle@db logicalbak]$ impdp   tables=emp  directory=dir_18 dumpfile=emp.dmp 

>>>dump 11:import data pump, by tables

Import: Release 11.2.0.1.0 - Production on Sun Mar 18 10:30:54 2012

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

Username: scott

Password: 

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

Master table "SCOTT"."SYS_IMPORT_TABLE_01" successfully loaded/unloaded

Starting "SCOTT"."SYS_IMPORT_TABLE_01":  scott/******** tables=emp directory=dir_18 dumpfile=emp.dmp 

Processing object type TABLE_EXPORT/TABLE/TABLE

Processing object type TABLE_EXPORT/TABLE/TABLE_DATA

. . imported "SCOTT"."EMP"                               8.570 KB      14 rows

Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX

Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT

Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS

Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT

Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS

Job "SCOTT"."SYS_IMPORT_TABLE_01" successfully completed at 10:31:07

[oracle@db logicalbak]$ rlwrap sqlplus  / as sysdba

SQL*Plus: Release 11.2.0.1.0 Production on Sun Mar 18 10:31:17 2012

Copyright (c) 1982, 2009, Oracle.  All rights reserved.

Connected to:

Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> select * from scott.emp;

     EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM

---------- ---------- --------- ---------- --------- ---------- ----------

    DEPTNO

----------

      7369 SMITH      CLERK           7902 17-DEC-80        800

        20

      7499 ALLEN      SALESMAN        7698 20-FEB-81       1600        300

        30

      7521 WARD       SALESMAN        7698 22-FEB-81       1250        500

        30

     EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM

---------- ---------- --------- ---------- --------- ---------- ----------

    DEPTNO

----------

      7566 JONES      MANAGER         7839 02-APR-81       2975

        20

      7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400

        30

      7698 BLAKE      MANAGER         7839 01-MAY-81       2850

        30

     EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM

---------- ---------- --------- ---------- --------- ---------- ----------

    DEPTNO

----------

      7782 CLARK      MANAGER         7839 09-JUN-81       2450

        10

      7788 SCOTT      ANALYST         7566 19-APR-87       3000

        20

      7839 KING       PRESIDENT            17-NOV-81       5000

        10

     EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM

---------- ---------- --------- ---------- --------- ---------- ----------

    DEPTNO

----------

      7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0

        30

      7876 ADAMS      CLERK           7788 23-MAY-87       1100

        20

      7900 JAMES      CLERK           7698 03-DEC-81        950

        30

     EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM

---------- ---------- --------- ---------- --------- ---------- ----------

    DEPTNO

----------

      7902 FORD       ANALYST         7566 03-DEC-81       3000

        20

      7934 MILLER     CLERK           7782 23-JAN-82       1300

        10

14 rows selected.

SQL> truncate table scott.emp;

Table truncated.

SQL> desc scott.emp

 Name                                      Null?    Type

 ----------------------------------------- -------- ----------------------------

 EMPNO                                     NOT NULL NUMBER(4)

 ENAME                                              VARCHAR2(10)

 JOB                                                VARCHAR2(9)

 MGR                                                NUMBER(4)

 HIREDATE                                           DATE

 SAL                                                NUMBER(7,2)

 COMM                                               NUMBER(7,2)

 DEPTNO                                             NUMBER(2)

SQL> select * from scott.emp;

no rows selected

SQL> exit

Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

[oracle@db logicalbak]$ impdp   tables=emp  directory=dir_18 dumpfile=emp.dmp 

Import: Release 11.2.0.1.0 - Production on Sun Mar 18 10:31:49 2012

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

Username: scott

Password: 

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

Master table "SCOTT"."SYS_IMPORT_TABLE_01" successfully loaded/unloaded

Starting "SCOTT"."SYS_IMPORT_TABLE_01":  scott/******** tables=emp directory=dir_18 dumpfile=emp.dmp 

Processing object type TABLE_EXPORT/TABLE/TABLE

ORA-39151: Table "SCOTT"."EMP" exists. All dependent metadata and data will be skipped due to table_exists_action of skip

Processing object type TABLE_EXPORT/TABLE/TABLE_DATA

Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX

Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT

Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS

Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT

Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS

Job "SCOTT"."SYS_IMPORT_TABLE_01" completed with 1 error(s) at 10:31:55

[oracle@db logicalbak]$ 1)create table 2_insert data 3)create index 4)create constraints >>>dump ,the sequence of backup a table

[oracle@db logicalbak]$ 

[oracle@db logicalbak]$ impdp help=y >>>the command for help

Import: Release 11.2.0.1.0 - Production on Sun Mar 18 10:32:58 2012

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

The Data Pump Import utility provides a mechanism for transferring data objects

between Oracle databases. The utility is invoked with the following command:

     Example: impdp scott/tiger DIRECTORY=dmpdir DUMPFILE=scott.dmp

You can control how Import runs by entering the 'impdp' command followed

by various parameters. To specify parameters, you use keywords:

     Format:  impdp KEYWORD=value or KEYWORD=(value1,value2,...,valueN)

     Example: impdp scott/tiger DIRECTORY=dmpdir DUMPFILE=scott.dmp

USERID must be the first parameter on the command line.

------------------------------------------------------------------------------

The available keywords and their descriptions follow. Default values are listed within square brackets.

ATTACH

Attach to an existing job.

For example, ATTACH=job_name.

CONTENT

Specifies data to load.

Valid keywords are: [ALL], DATA_ONLY and METADATA_ONLY.

DATA_OPTIONS

Data layer option flags.

Valid keywords are: SKIP_CONSTRAINT_ERRORS.

DIRECTORY

Directory object to be used for dump, log and sql files.

DUMPFILE

List of dumpfiles to import from [expdat.dmp].

For example, DUMPFILE=scott1.dmp, scott2.dmp, dmpdir:scott3.dmp.

ENCRYPTION_PASSWORD

Password key for accessing encrypted data within a dump file.

Not valid for network import jobs.

ESTIMATE

Calculate job estimates.

Valid keywords are: [BLOCKS] and STATISTICS.

EXCLUDE

Exclude specific object types.

For example, EXCLUDE=SCHEMA:"='HR'".

FLASHBACK_SCN

SCN used to reset session snapshot.

FLASHBACK_TIME

Time used to find the closest corresponding SCN value.

FULL

Import everything from source [Y].

HELP

Display help messages [N].

INCLUDE

Include specific object types.

For example, INCLUDE=TABLE_DATA.

JOB_NAME

Name of import job to create.

LOGFILE

Log file name [import.log].

NETWORK_LINK

Name of remote database link to the source system.

NOLOGFILE

Do not write log file [N].

PARALLEL

Change the number of active workers for current job.

PARFILE

Specify parameter file.

PARTITION_OPTIONS

Specify how partitions should be transformed.

Valid keywords are: DEPARTITION, MERGE and [NONE].

QUERY

Predicate clause used to import a subset of a table.

For example, QUERY=employees:"WHERE department_id > 10".

REMAP_DATA

Specify a data conversion function.

For example, REMAP_DATA=EMP.EMPNO:REMAPPKG.EMPNO.

REMAP_DATAFILE

Redefine datafile references in all DDL statements.

REMAP_SCHEMA

Objects from one schema are loaded into another schema.

REMAP_TABLE

Table names are remapped to another table.

For example, REMAP_TABLE=EMP.EMPNO:REMAPPKG.EMPNO.

REMAP_TABLESPACE

Tablespace object are remapped to another tablespace.

REUSE_DATAFILES

Tablespace will be initialized if it already exists [N].

SCHEMAS

List of schemas to import.

SKIP_UNUSABLE_INDEXES

Skip indexes that were set to the Index Unusable state.

SOURCE_EDITION

Edition to be used for extracting metadata.

SQLFILE

Write all the SQL DDL to a specified file.

STATUS

Frequency (secs) job status is to be monitored where

the default [0] will show new status when available.

STREAMS_CONFIGURATION

Enable the loading of Streams metadata

TABLE_EXISTS_ACTION

Action to take if imported object already exists.

Valid keywords are: APPEND, REPLACE, [SKIP] and TRUNCATE.

TABLES

Identifies a list of tables to import.

For example, TABLES=HR.EMPLOYEES,SH.SALES:SALES_1995.

TABLESPACES

Identifies a list of tablespaces to import.

TARGET_EDITION

Edition to be used for loading metadata.

TRANSFORM

Metadata transform to apply to applicable objects.

Valid keywords are: OID, PCTSPACE, SEGMENT_ATTRIBUTES and STORAGE.

TRANSPORTABLE

Options for choosing transportable data movement.

Valid keywords are: ALWAYS and [NEVER].

Only valid in NETWORK_LINK mode import operations.

TRANSPORT_DATAFILES

List of datafiles to be imported by transportable mode.

TRANSPORT_FULL_CHECK

Verify storage segments of all tables [N].

TRANSPORT_TABLESPACES

List of tablespaces from which metadata will be loaded.

Only valid in NETWORK_LINK mode import operations.

VERSION

Version of objects to import.

Valid keywords are: [COMPATIBLE], LATEST or any valid database version.

Only valid for NETWORK_LINK and SQLFILE.

------------------------------------------------------------------------------

The following commands are valid while in interactive mode.

Note: abbreviations are allowed.

CONTINUE_CLIENT

Return to logging mode. Job will be restarted if idle.

EXIT_CLIENT

Quit client session and leave job running.

HELP

Summarize interactive commands.

KILL_JOB

Detach and delete job.

PARALLEL

Change the number of active workers for current job.

START_JOB

Start or resume current job.

Valid keywords are: SKIP_CURRENT.

STATUS

Frequency (secs) job status is to be monitored where

the default [0] will show new status when available.

STOP_JOB

Orderly shutdown of job execution and exits the client.

Valid keywords are: IMMEDIATE.

[oracle@db logicalbak]$ impdp   tables=emp  directory=dir_18 dumpfile=emp.dmp table_exists_action=append

 >>>dump12 :impdp   tables=emp  directory=dir_18 dumpfile=emp.dmp table_exists_action=append

Import: Release 11.2.0.1.0 - Production on Sun Mar 18 10:34:58 2012

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

Username: scott

Password: 

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

Master table "SCOTT"."SYS_IMPORT_TABLE_01" successfully loaded/unloaded

Starting "SCOTT"."SYS_IMPORT_TABLE_01":  scott/******** tables=emp directory=dir_18 dumpfile=emp.dmp table_exists_action=append 

Processing object type TABLE_EXPORT/TABLE/TABLE

ORA-39152: Table "SCOTT"."EMP" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append

Processing object type TABLE_EXPORT/TABLE/TABLE_DATA

. . imported "SCOTT"."EMP"                               8.570 KB      14 rows

Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX

Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT

Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS

Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT

Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS

Job "SCOTT"."SYS_IMPORT_TABLE_01" completed with 1 error(s) at 10:35:04

[oracle@db logicalbak]$ rlwrap sqlplus  / as sysdba

SQL*Plus: Release 11.2.0.1.0 Production on Sun Mar 18 10:35:29 2012

Copyright (c) 1982, 2009, Oracle.  All rights reserved.

Connected to:

Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

SQL> select * from scott.emp;

     EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM

---------- ---------- --------- ---------- --------- ---------- ----------

    DEPTNO

----------

      7369 SMITH      CLERK           7902 17-DEC-80        800

        20

      7499 ALLEN      SALESMAN        7698 20-FEB-81       1600        300

        30

      7521 WARD       SALESMAN        7698 22-FEB-81       1250        500

        30

     EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM

---------- ---------- --------- ---------- --------- ---------- ----------

    DEPTNO

----------

      7566 JONES      MANAGER         7839 02-APR-81       2975

        20

      7654 MARTIN     SALESMAN        7698 28-SEP-81       1250       1400

        30

      7698 BLAKE      MANAGER         7839 01-MAY-81       2850

        30

     EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM

---------- ---------- --------- ---------- --------- ---------- ----------

    DEPTNO

----------

      7782 CLARK      MANAGER         7839 09-JUN-81       2450

        10

      7788 SCOTT      ANALYST         7566 19-APR-87       3000

        20

      7839 KING       PRESIDENT            17-NOV-81       5000

        10

     EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM

---------- ---------- --------- ---------- --------- ---------- ----------

    DEPTNO

----------

      7844 TURNER     SALESMAN        7698 08-SEP-81       1500          0

        30

      7876 ADAMS      CLERK           7788 23-MAY-87       1100

        20

      7900 JAMES      CLERK           7698 03-DEC-81        950

        30

     EMPNO ENAME      JOB              MGR HIREDATE         SAL       COMM

---------- ---------- --------- ---------- --------- ---------- ----------

    DEPTNO

----------

      7902 FORD       ANALYST         7566 03-DEC-81       3000

        20

      7934 MILLER     CLERK           7782 23-JAN-82       1300

        10

14 rows selected.

SQL> exit

Disconnected from Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

 [oracle@db logicalbak]$ impdp   tables=emp  directory=dir_18 dumpfile=emp.dmp table_exists_action=append

 

Import: Release 11.2.0.1.0 - Production on Sun Mar 18 10:35:46 2012

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

Username: scott

Password: 

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

Master table "SCOTT"."SYS_IMPORT_TABLE_01" successfully loaded/unloaded

Starting "SCOTT"."SYS_IMPORT_TABLE_01":  scott/******** tables=emp directory=dir_18 dumpfile=emp.dmp table_exists_action=append 

Processing object type TABLE_EXPORT/TABLE/TABLE

ORA-39152: Table "SCOTT"."EMP" exists. Data will be appended to existing table but all dependent metadata will be skipped due to table_exists_action of append

Processing object type TABLE_EXPORT/TABLE/TABLE_DATA

ORA-31693: Table data object "SCOTT"."EMP" failed to load/unload and is being skipped due to error:

ORA-00001: unique constraint (SCOTT.PK_EMP) violated

Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX

Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT

Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS

Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT

Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS

Job "SCOTT"."SYS_IMPORT_TABLE_01" completed with 2 error(s) at 10:35:51

[oracle@db logicalbak]$ expdp help=y

Export: Release 11.2.0.1.0 - Production on Sun Mar 18 10:37:18 2012

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

The Data Pump export utility provides a mechanism for transferring data objects

between Oracle databases. The utility is invoked with the following command:

   Example: expdp scott/tiger DIRECTORY=dmpdir DUMPFILE=scott.dmp

You can control how Export runs by entering the 'expdp' command followed

by various parameters. To specify parameters, you use keywords:

   Format:  expdp KEYWORD=value or KEYWORD=(value1,value2,...,valueN)

   Example: expdp scott/tiger DUMPFILE=scott.dmp DIRECTORY=dmpdir SCHEMAS=scott

               or TABLES=(T1:P1,T1:P2), if T1 is partitioned table

USERID must be the first parameter on the command line.

------------------------------------------------------------------------------

The available keywords and their descriptions follow. Default values are listed within square brackets.

ATTACH

Attach to an existing job.

For example, ATTACH=job_name.

COMPRESSION

Reduce the size of a dump file.

Valid keyword values are: ALL, DATA_ONLY, [METADATA_ONLY] and NONE.

CONTENT

Specifies data to unload.

Valid keyword values are: [ALL], DATA_ONLY and METADATA_ONLY.

DATA_OPTIONS

Data layer option flags.

Valid keyword values are: XML_CLOBS.

DIRECTORY

Directory object to be used for dump and log files.

DUMPFILE

Specify list of destination dump file names [expdat.dmp].

For example, DUMPFILE=scott1.dmp, scott2.dmp, dmpdir:scott3.dmp.

ENCRYPTION

Encrypt part or all of a dump file.

Valid keyword values are: ALL, DATA_ONLY, ENCRYPTED_COLUMNS_ONLY, METADATA_ONLY and NONE.

ENCRYPTION_ALGORITHM

Specify how encryption should be done.

Valid keyword values are: [AES128], AES192 and AES256.

ENCRYPTION_MODE

Method of generating encryption key.

Valid keyword values are: DUAL, PASSWORD and [TRANSPARENT].

ENCRYPTION_PASSWORD

Password key for creating encrypted data within a dump file.

ESTIMATE

Calculate job estimates.

Valid keyword values are: [BLOCKS] and STATISTICS.

ESTIMATE_ONLY

Calculate job estimates without performing the export.

EXCLUDE

Exclude specific object types.

For example, EXCLUDE=SCHEMA:"='HR'".

FILESIZE

Specify the size of each dump file in units of bytes.

FLASHBACK_SCN

SCN used to reset session snapshot.

FLASHBACK_TIME

Time used to find the closest corresponding SCN value.

FULL

Export entire database [N].

HELP

Display Help messages [N].

INCLUDE

Include specific object types.

For example, INCLUDE=TABLE_DATA.

JOB_NAME

Name of export job to create.

LOGFILE

Specify log file name [export.log].

NETWORK_LINK

Name of remote database link to the source system.

NOLOGFILE

Do not write log file [N].

PARALLEL

Change the number of active workers for current job.

PARFILE

Specify parameter file name.

QUERY

Predicate clause used to export a subset of a table.

For example, QUERY=employees:"WHERE department_id > 10".

REMAP_DATA

Specify a data conversion function.

For example, REMAP_DATA=EMP.EMPNO:REMAPPKG.EMPNO.

REUSE_DUMPFILES

Overwrite destination dump file if it exists [N].

SAMPLE

Percentage of data to be exported. 

SCHEMAS

List of schemas to export [login schema].

SOURCE_EDITION

Edition to be used for extracting metadata.

STATUS

Frequency (secs) job status is to be monitored where

the default [0] will show new status when available.

TABLES

Identifies a list of tables to export.

For example, TABLES=HR.EMPLOYEES,SH.SALES:SALES_1995.

TABLESPACES

Identifies a list of tablespaces to export.

TRANSPORTABLE

Specify whether transportable method can be used.

Valid keyword values are: ALWAYS and [NEVER].

TRANSPORT_FULL_CHECK

Verify storage segments of all tables [N].

TRANSPORT_TABLESPACES

List of tablespaces from which metadata will be unloaded.

VERSION

Version of objects to export.

Valid keyword values are: [COMPATIBLE], LATEST or any valid database version.

------------------------------------------------------------------------------

The following commands are valid while in interactive mode.

Note: abbreviations are allowed.

ADD_FILE

Add dumpfile to dumpfile set.

CONTINUE_CLIENT

Return to logging mode. Job will be restarted if idle.

EXIT_CLIENT

Quit client session and leave job running.

FILESIZE

Default filesize (bytes) for subsequent ADD_FILE commands.

HELP

Summarize interactive commands.

KILL_JOB

Detach and delete job.

PARALLEL

Change the number of active workers for current job.

REUSE_DUMPFILES

Overwrite destination dump file if it exists [N]. 

START_JOB

Start or resume current job.

Valid keyword values are: SKIP_CURRENT.

STATUS

Frequency (secs) job status is to be monitored where

the default [0] will show new status when available.

STOP_JOB

Orderly shutdown of job execution and exits the client.

Valid keyword values are: IMMEDIATE.

 [oracle@db logicalbak]$ expdp  tables=emp  directory=dir_18 dumpfile=text.dmp content=data_only

>>>’content’ = data_only:on export data

Export: Release 11.2.0.1.0 - Production on Sun Mar 18 10:39:10 2012

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

Username: scott

Password: 

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

Starting "SCOTT"."SYS_EXPORT_TABLE_01":  scott/******** tables=emp directory=dir_18 dumpfile=text.dmp content=data_only 

Estimate in progress using BLOCKS method...

Processing object type TABLE_EXPORT/TABLE/TABLE_DATA

Total estimation using BLOCKS method: 64 KB

. . exported "SCOTT"."EMP"                               8.570 KB      14 rows

Master table "SCOTT"."SYS_EXPORT_TABLE_01" successfully loaded/unloaded

******************************************************************************

Dump file set for SCOTT.SYS_EXPORT_TABLE_01 is:

  /ocm/logicalbak/text.dmp

Job "SCOTT"."SYS_EXPORT_TABLE_01" successfully completed at 10:39:17

[oracle@db logicalbak]$ expdp  tables=emp  directory=dir_18 dumpfile=text1.dmp content=metadata_only

Export: Release 11.2.0.1.0 - Production on Sun Mar 18 10:39:28 2012

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

Username: scott

Password: 

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

Starting "SCOTT"."SYS_EXPORT_TABLE_01":  scott/******** tables=emp directory=dir_18 dumpfile=text1.dmp content=metadata_only 

Processing object type TABLE_EXPORT/TABLE/TABLE

Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX

Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT

Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS

Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT

Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS

Master table "SCOTT"."SYS_EXPORT_TABLE_01" successfully loaded/unloaded

******************************************************************************

Dump file set for SCOTT.SYS_EXPORT_TABLE_01 is:

  /ocm/logicalbak/text1.dmp

Job "SCOTT"."SYS_EXPORT_TABLE_01" successfully completed at 10:39:38

[oracle@db logicalbak]$ impdp tables=emp  directory=dir_18 dumpfile=emp.dmp sqlfile=aaa.txt

>>>that command is so important,used to export the whole tables to a sqlfile,this sqlfile contants the whole structure of a table ,it can be used to re-build a table(in other location)

Import: Release 11.2.0.1.0 - Production on Sun Mar 18 10:42:51 2012

Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.

Username: scott

Password: 

Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 - Production

With the Partitioning, OLAP, Data Mining and Real Application Testing options

Master table "SCOTT"."SYS_SQL_FILE_TABLE_01" successfully loaded/unloaded

Starting "SCOTT"."SYS_SQL_FILE_TABLE_01":  scott/******** tables=emp directory=dir_18 dumpfile=emp.dmp sqlfile=aaa.txt 

Processing object type TABLE_EXPORT/TABLE/TABLE

Processing object type TABLE_EXPORT/TABLE/INDEX/INDEX

Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT

Processing object type TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS

Processing object type TABLE_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT

Processing object type TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS

Job "SCOTT"."SYS_SQL_FILE_TABLE_01" successfully completed at 10:42:57

[oracle@db logicalbak]$ more aaa.txt  >>>view the exported files

-- CONNECT SCOTT

ALTER SESSION SET EVENTS '10150 TRACE NAME CONTEXT FOREVER, LEVEL 1';

ALTER SESSION SET EVENTS '10904 TRACE NAME CONTEXT FOREVER, LEVEL 1';

ALTER SESSION SET EVENTS '25475 TRACE NAME CONTEXT FOREVER, LEVEL 1';

ALTER SESSION SET EVENTS '10407 TRACE NAME CONTEXT FOREVER, LEVEL 1';

ALTER SESSION SET EVENTS '10851 TRACE NAME CONTEXT FOREVER, LEVEL 1';

ALTER SESSION SET EVENTS '22830 TRACE NAME CONTEXT FOREVER, LEVEL 192 ';

-- new object type path: TABLE_EXPORT/TABLE/TABLE

CREATE TABLE "SCOTT"."EMP" 

   (    "EMPNO" NUMBER(4,0), 

        "ENAME" VARCHAR2(10 BYTE), 

        "JOB" VARCHAR2(9 BYTE), 

        "MGR" NUMBER(4,0), 

        "HIREDATE" DATE, 

        "SAL" NUMBER(7,2), 

        "COMM" NUMBER(7,2), 

        "DEPTNO" NUMBER(2,0)

   ) SEGMENT CREATION IMMEDIATE 

  PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING

  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645

  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE D

EFAULT)

  TABLESPACE "USERS" ;

 

-- new object type path: TABLE_EXPORT/TABLE/INDEX/INDEX

CREATE UNIQUE INDEX "SCOTT"."PK_EMP" ON "SCOTT"."EMP" ("EMPNO") 

  PCTFREE 10 INITRANS 2 MAXTRANS 255 

  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645

  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE D

EFAULT)

  TABLESPACE "USERS" PARALLEL 1 ;

  ALTER INDEX "SCOTT"."PK_EMP" NOPARALLEL;

 

-- new object type path: TABLE_EXPORT/TABLE/CONSTRAINT/CONSTRAINT

ALTER TABLE "SCOTT"."EMP" ADD CONSTRAINT "PK_EMP" PRIMARY KEY ("EMPNO")

  USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 

  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645

  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE D

EFAULT)

  TABLESPACE "USERS"  ENABLE;

 

-- new object type path: TABLE_EXPORT/TABLE/INDEX/STATISTICS/INDEX_STATISTICS

DECLARE I_N VARCHAR2(60); 

  I_O VARCHAR2(60); 

  c DBMS_METADATA.T_VAR_COLL; 

  df varchar2(21) := 'YYYY-MM-DD:HH24:MI:SS'; 

BEGIN

  DELETE FROM "SYS"."IMPDP_STATS"; 

  i_n := 'PK_EMP'; 

  i_o := 'SCOTT'; 

  INSERT INTO "SYS"."IMPDP_STATS" (type,version,flags,c1,c2,c3,c5,n1,n2,n3,n4,n5,n6,n7,n8,n9,n10,n11,n12

,d1,cl1) VALUES ('I',5,2,I_N,NULL,NULL,I_O,14,1,14,1,1,1,0,14,NULL,NULL,NULL,NULL,TO_DATE('2012-03-18 10

:04:51',df),NULL);

  DBMS_STATS.IMPORT_INDEX_STATS('"' || i_o || '"','"' || i_n || '"',NULL,'"IMPDP_STATS"',NULL,'"SYS"'); 

  DELETE FROM "SYS"."IMPDP_STATS"; 

END; 

/

 

-- new object type path: TABLE_EXPORT/TABLE/CONSTRAINT/REF_CONSTRAINT

ALTER TABLE "SCOTT"."EMP" ADD CONSTRAINT "FK_DEPTNO" FOREIGN KEY ("DEPTNO")

          REFERENCES "SCOTT"."DEPT" ("DEPTNO") ENABLE;

 

-- new object type path: TABLE_EXPORT/TABLE/STATISTICS/TABLE_STATISTICS

DECLARE 

  c varchar2(60); 

  nv varchar2(1); 

  df varchar2(21) := 'YYYY-MM-DD:HH24:MI:SS'; 

  s varchar2(60) := 'SCOTT'; 

  t varchar2(60) := 'EMP'; 

  p varchar2(1); 

  sp varchar2(1); 

  stmt varchar2(300) := 'INSERT INTO "SYS"."IMPDP_STATS" (type,version,c1,c2,c3,c4,c5,n1,n2,n3,n4,n5,n6,

n7,n8,n9,n10,n11,d1,r1,r2,ch1,flags) VALUES (''C'',5,:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11,:12,:13,:14,:15,

:16,:17,:18,:19,:20,:21)';

BEGIN

  DELETE FROM "SYS"."IMPDP_STATS"; 

  INSERT INTO "SYS"."IMPDP_STATS" (type,version,flags,c1,c2,c3,c5,n1,n2,n3,n4,n10,n11,n12,d1) VALUES ('T

',5,2,t,p,sp,s,

               14,5,38,14,NULL,NULL,NULL,

               TO_DATE('2012-03-18 10:04:50',df));

  c := 'EMPNO'; 

  EXECUTE IMMEDIATE stmt USING t,p,sp,c,s,

               14,.0714285714285714,14,14,0,7369,7934,4,nv,nv,nv,

               TO_DATE('2012-03-18 10:04:50',df),'C24A46','C25023',nv,2;

  c := 'ENAME'; 

  EXECUTE IMMEDIATE stmt USING t,p,sp,c,s,

               14,.0714285714285714,14,14,0,3.38883673419062E+35,4.53054701071074E+35,6,nv,nv,nv,

               TO_DATE('2012-03-18 10:04:50',df),'4144414D53','57415244',nv,2;

  c := 'JOB'; 

  EXECUTE IMMEDIATE stmt USING t,p,sp,c,s,

               5,.2,5,14,0,3.39086497213261E+35,4.32285038678150E+35,8,nv,nv,nv,

               TO_DATE('2012-03-18 10:04:50',df),'414E414C595354','53414C45534D414E',nv,2;

  c := 'MGR'; 

  EXECUTE IMMEDIATE stmt USING t,p,sp,c,s,

               6,.166666666666667,6,13,1,7566,7902,4,nv,nv,nv,

               TO_DATE('2012-03-18 10:04:50',df),'C24C43','C25003',nv,2;

END; 

/

DECLARE 

  c varchar2(60); 

  nv varchar2(1); 

  df varchar2(21) := 'YYYY-MM-DD:HH24:MI:SS'; 

  s varchar2(60) := 'SCOTT'; 

  t varchar2(60) := 'EMP'; 

  p varchar2(1); 

  sp varchar2(1); 

  stmt varchar2(300) := 'INSERT INTO "SYS"."IMPDP_STATS" (type,version,c1,c2,c3,c4,c5,n1,n2,n3,n4,n5,n6,

n7,n8,n9,n10,n11,d1,r1,r2,ch1,flags) VALUES (''C'',5,:1,:2,:3,:4,:5,:6,:7,:8,:9,:10,:11,:12,:13,:14,:15,

:16,:17,:18,:19,:20,:21)';

BEGIN

  NULL; 

  c := 'HIREDATE'; 

  EXECUTE IMMEDIATE stmt USING t,p,sp,c,s,

               13,.0769230769230769,13,14,0,2444591,2446939,8,nv,nv,nv,

               TO_DATE('2012-03-18 10:04:50',df),'77B40C11010101','77BB0517010101',nv,2;

  c := 'SAL'; 

  EXECUTE IMMEDIATE stmt USING t,p,sp,c,s,

               12,.0833333333333333,12,14,0,800,5000,4,nv,nv,nv,

               TO_DATE('2012-03-18 10:04:50',df),'C209','C233',nv,2;

  c := 'COMM'; 

  EXECUTE IMMEDIATE stmt USING t,p,sp,c,s,

               4,.25,4,4,10,0,1400,2,nv,nv,nv,

               TO_DATE('2012-03-18 10:04:50',df),'80','C20F',nv,2;

  c := 'DEPTNO'; 

  EXECUTE IMMEDIATE stmt USING t,p,sp,c,s,

               3,.333333333333333,3,14,0,10,30,3,nv,nv,nv,

               TO_DATE('2012-03-18 10:04:50',df),'C10B','C11F',nv,2;

  DBMS_STATS.IMPORT_TABLE_STATS('"SCOTT"','"EMP"',NULL,'"IMPDP_STATS"',NULL,NULL,'"SYS"'); 

  DELETE FROM "SYS"."IMPDP_STATS"; 

END; 

/

>>>ues the exported file to create the table EMP

SQL> CREATE TABLE "SCOTT"."EMP" 

   (    "EMPNO" NUMBER(4,0), 

        "ENAME" VARCHAR2(10 BYTE), 

        "JOB" VARCHAR2(9 BYTE), 

        "MGR" NUMBER(4,0), 

        "HIREDATE" DATE, 

  7          "SAL" NUMBER(7,2), 

  8          "COMM" NUMBER(7,2), 

  9          "DEPTNO" NUMBER(2,0)

 10     ) SEGMENT CREATION IMMEDIATE 

  PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING

  STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645

 13    PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CA 13  

  PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT)

 14    TABLESPACE "USERS" ;

Table created.