EXPDP Backup to multiple location in Oracle

EXPDP Backup to multiple location in Oracle

If you have a big table, you want to take backup with EXPDP but you don’t have sufficient space in a single mount point to keep the dump.
In this case, you can take expdp backup dump to multiple directory.

Example of EXPDP to multiple location

1. Create two directories for EXPDP backup:

SQL> create directory DIR1 as '/u01/DIR1';
Directory created.
SQL> create directory DIR2 as '/u02/DIR2';
Directory created.

2. Expdp backup command:

EXPDP directory=DIR1 dumpfile=DIR1:test_%U.dmp,DIR2:test_%U.dmp logfile=test.log parallel=2 tables=salesschema.orders


This entry was posted in Oracle on by .
Unknown's avatar

About SandeepSingh

Hi, I am working in IT industry with having more than 15 year of experience, worked as an Oracle DBA with a Company and handling different databases like Oracle, SQL Server , DB2 etc Worked as a Development and Database Administrator.

Leave a Reply