expdp/impdp用法詳解

lwitpub發表於2009-09-21

資料泵匯出expdp包括匯出表,匯出方案,匯出表空間,匯出資料庫4種方式。

使用EXPDP工具時,其轉儲檔案只能被存放在DIRECTORY物件對應的OS目錄中,而不能直接指定轉儲檔案所在的OS目錄.因此,使用EXPDP工具時,必須首先建立DIRECTORY物件.並且需要為資料庫使用者授予使用DIRECTORY物件許可權。
SQL> conn / as sysdba
已連線。
SQL> create directory dump_dir as '/root/expdp';

目錄已建立。

SQL> grant read,write on directory dump_dir to scott;

授權成功。
1,匯出表
expdp scott/tiger DIRECTORY=dump_dir dumpfile=tab.dmp tables=dept,emp
2,匯出方案
expdp scott/tiger DIRECTORY=dump_dir dumpfile=schema.dmp schemas=system,scott
3.匯出表空間
expdp system/manager DIRECTORY=dump_dir dumpfile=tablespace.dmp tablespaces=user01,user02
4,匯出資料庫
expdp system/manager DIRECTORY=dump_dir  dumpfile=fulldb%U.dump filesize=50m FULL=Y  parallel=4

IMPDP命令列選項與EXPDP有很多相同的,不同的有REMAP_*  和REUSE_*選項

1, 匯入表
Impdp scott/tiger DIRECTORY=dump_dir DUMPFILE=tab.dmp
TABLES=dept,emp

Impdp system/manage DIRECTORY=dump_dir DUMPFILE=tab.dmp
TABLES=scott.dept,scott.emp REMAP_SCHEMA=SCOTT:SYSTEM
第一種方法表示將DEPT和EMP表匯入到SCOTT方案中,第二種方法表示將DEPT和EMP表匯入的SYSTEM方案中.
注意,如果要將表匯入到其他方案中,必須指定REMAP SCHEMA選項.

2,匯入方案
Impdp scott/tiger DIRECTORY=dump_dir DUMPFILE=schema.dmp SCHEMAS=scott

Impdp system/manager DIRECTORY=dump_dir DUMPFILE=schema.dmp SCHEMAS=scott REMAP_SCHEMA=scott:system
3,匯入表空間
Impdp system/manager DIRECTORY=dump_dir DUMPFILE=tablespace.dmp TABLESPACES=user01
4,匯入資料庫
Impdp system/manager DIRECTORY=dump_dir DUMPFILE=full.dmp FULL=y

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/628922/viewspace-615147/,如需轉載,請註明出處,否則將追究法律責任。

相關文章