Oracle Data Pump in Oracle Database
Oracle Data Pump in Oracle Database
Oracle Database have new Data Pump utility, which is faster and more flexible as
compaire to the "exp" and "imp" utilities used in old Oracle database releases. In
addition to basic import and export functionality data pump provides a PL/SQL API
and support for external tables. Here some simple data pump examples using
expdp and impdp utility.
$ cd /oradisk
$ mkdir datadump
$ sqlplus /nolog
SQL> connect /as sysdba
$ sqlplus hr/hr
Sql> select * from employee;
The FULL parameter indicates that the export is a full database mode export. All
data andmetadata in the database are exported.
The PARALLEL parameter is valid only in the Enterprise Edition of the Oracle
database.To increase or decrease the value of PARALLEL during job execution, use
interactivecommandmode that is described in the example below.The FILESIZE
parameter will limit the maximum size of each dump file to 2 gigabytes.
The INCLUDE and EXCLUDE parameters can be used to limit the export/import to
specific objects. When the INCLUDE parameter is used, only those objects specified
by it will be included in the export. When the EXCLUDE parameter is used all objects
except those specified by it will be included in the export.