0% found this document useful (0 votes)
73 views3 pages

Data Pump Utility in Oracle 11g

This document discusses different modes for performing data backups and restores using Oracle Database 11g's Data Pump utility including: 1. Full Export mode allows exporting the entire database with the EXP_FULL_DATABASE role. 2. Full Import mode loads the entire contents of an export dump file to a target database requiring the IMP_FULL_DATABASE role. 3. Schema Import mode loads only specified schemas using the SCHEMAS parameter. 4. Table Import mode loads only specified tables and partitions using the TABLES parameter.

Uploaded by

Ssegawa Bryan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
73 views3 pages

Data Pump Utility in Oracle 11g

This document discusses different modes for performing data backups and restores using Oracle Database 11g's Data Pump utility including: 1. Full Export mode allows exporting the entire database with the EXP_FULL_DATABASE role. 2. Full Import mode loads the entire contents of an export dump file to a target database requiring the IMP_FULL_DATABASE role. 3. Schema Import mode loads only specified schemas using the SCHEMAS parameter. 4. Table Import mode loads only specified tables and partitions using the TABLES parameter.

Uploaded by

Ssegawa Bryan
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 3

Data Backup Utility in Oracle Database 11g

Invoking Data Pump Export ( Manual Backup)

Full Export Mode


A full export is specified using the FULL parameter. In a full database export, the entire database is
unloaded. This mode requires that you have the EXP_FULL_DATABASE role. Example :

$expdp system/manager1@orcl DIRECTORY=bkp_dir DUMPFILE=APLUG&&date.dmp FULL=y


LOGFILE=APLUG&&date.log
Procedures

1. Click on Start, search


2. Logon to Database as Below

Invoking Data Pump Export (Automatic)

Full Import Mode The full import mode loads the entire contents of the source (export) dump file to
the target database. However, you must have been granted the IMP_FULL_DATABASE role on the
target database. The data pump import is invoked using the impdp command in the command line
with the FULL parameter specified in the same command line.

$impdp system/manager1@oxy DIRECTORY=exp_imp_dir DUMPFILE=exp_oxy.dmp FULL=y


LOGFILE=impfull.log

Schema Import Mode


The schema import mode is invoked using the SCHEMAS parameter. Only the contents of the
specified schemas are load into the target database. The source dump file can be a full, schema-
mode, table, or tablespace mode export files. If you have a IMP_FULL_DATABASE role, you can
specify a list of schemas to load into the target database.

$ impdp system/manager DIRECTORY=expdp_dir DUMPFILE=expfull.dmp SCHEMAS=scott

Table Import Mode


This export mode is specified using the TABLES parameter. In this mode, only the specified tables,
partitions and their dependents are exported. If you do not have the EXP_FULL_DATABASE role, you
can import only tables in your own schema.

$ impdp scott/tiger DIRECTORY=expdp_dir DUMPFILE=expfull.dmp TABLES=emp,dept

You might also like