Using Data Pump Export Utility
Using Data Pump Export Utility
Starting with Oracle 10g, Oracle has introduced an enhanced version of EXPORT and IMPORT
utility known as DATA PUMP. Data Pump is similar to EXPORT and IMPORT utility but it has
many advantages. Some of the advantages are:
Most Data Pump export and import operations occur on the Oracle database server. i.e.
all the dump files are created in the server even if you run the Data Pump utility from
client machine. This results in increased performance because data is not transferred
through network.
You can Stop and Re-Start export and import jobs. This is particularly useful if you have
started an export or import job and after some time you want to do some other urgent
work.
The ability to detach from and reattach to long-running jobs without affecting the job
itself. This allows DBAs and other operations personnel to monitor jobs from multiple
locations.
The ability to estimate how much space an export job would consume, without actually
performing the export
Support for an interactive-command mode that allows monitoring of and interaction with
ongoing jobs
To Use Data Pump, DBA has to create a directory in Server Machine and create a Directory
Object in the database mapping to the directory created in the file system.
The following example creates a directory in the filesystem and creates a directory object in the
database and grants privileges on the Directory Object to the SCOTT user.
$mkdir my_dump_dir
$sqlplus
Enter User:/ as sysdba
SQL>create directory data_pump_dir as ‘/u01/oracle/my_dump_dir’;
The above command will export the full database and it will create the dump file full.dmp in the
directory on the server /u01/oracle/my_dump_dir
In some cases where the Database is in Terabytes the above command will not feasible since the
dump file size will be larger than the operating system limit, and hence export will fail. In this
situation you can create multiple dump files by typing the following command
This will create multiple dump files named full01.dmp, full02.dmp, full03.dmp and so on. The
FILESIZE parameter specifies how much larger the dump file should be.
To export all the objects of SCOTT’S schema you can run the following export data pump
command.
$expdp scott/tiger
DIRECTORY=data_pump_dir DUMPFILE=scott_schema.dmp
SCHEMAS=SCOTT
You can omit SCHEMAS since the default mode of Data Pump export is SCHEMAS only.
If you want to export objects of multiple schemas you can specify the following command
$expdp scott/tiger
DIRECTORY=data_pump_dir DUMPFILE=scott_schema.dmp
SCHEMAS=SCOTT,HR,ALI
You can use Data Pump Export utility to export individual tables. The following example shows
the syntax to export tables
TABLES=employees,jobs,departments
If you want to export tables located in a particular tablespace you can type the following
command
You can exclude objects while performing a export by using EXCLUDE option of Data Pump
utility. For example you are exporting a schema and don’t want to export tables
whose name starts with “A” then you can type the following command
$expdp scott/tiger
DIRECTORY=data_pump_dir DUMPFILE=scott_schema.dmp
SCHEMAS=SCOTT EXCLUDE=TABLE:”like ‘A%’”
Then all tables in Scott’s Schema whose name starts with “A “ will not be exported.
Similarly you can also INCLUDE option to only export certain objects like this
$expdp scott/tiger
DIRECTORY=data_pump_dir DUMPFILE=scott_schema.dmp
SCHEMAS=SCOTT INCLUDE=TABLE:”like ‘A%’”
This is opposite of EXCLUDE option i.e. it will export only those tables of Scott’s schema
whose name starts with “A”
Similarly you can also exclude INDEXES, CONSTRAINTS, GRANTS, USER, SCHEMA
You can use QUERY option to export only required rows. For Example, the following will
export only those rows of employees tables whose salary is above 10000 and whose dept id is 10.
You can suspend running export jobs and later on resume these jobs or kill these jobs using Data
Pump Export. You can start a job in one client machine and then, if because of some work, you
can suspend it. Afterwards when your work has been finished you can continue the job from the
same client, where you stopped the job, or you can restart the job from another client machine.
For Example, suppose a DBA starts a full database export by typing the following command at
one client machine CLNT1 by typing the following command
After some time, the DBA wants to stop this job temporarily. Then he presses CTRL+C to enter
into interactive mode. Then he will get the Export> prompt where he can type interactive
commands
Now he wants to stop this export job so he will type the following command
Export> STOP_JOB=IMMEDIATE
Are you sure you wish to stop this job ([y]/n): y
After finishing his other work, the DBA wants to resume the export job and the client machine
from where he actually started the job is locked because, the user has locked his/her cabin. So
now the DBA will go to another client machine and he reattach to the job by typing the following
command
After the job status is displayed, he can issue the CONTINUE_CLIENT command to resume logging
mode and restart the myfulljob job.
Export> CONTINUE_CLIENT
A message is displayed that the job has been reopened, and processing status is output to the
client.
Note: After reattaching to the Job a DBA can also kill the job by typing KILL_JOB, if he doesn’t
want to continue with the export job.