1. 程式人生 > >oracle expdp資料泵來匯出資料

oracle expdp資料泵來匯出資料

一,建立邏輯目錄:

SQL> sqlplus / as sysdba
SQL> create or replace directory expdp as 'd:\dump';

二. 匯出schema: sdeclone和forest的資料

C:\Users\Administrator>expdp yourusername/password directory=expdp dumpfile=forestsdclon
e_expdp_20180809.dmp logfile=forestsdclone_expdp_20180809.log schemas=sdeclone,f
orest

過程截圖:

補充: 如果匯出的時候要排除一些資料量比較大的臨時表。日誌表的,可以使用exclude來排除:

C:\Users\Administrator>expdp forest/forest directory=expdp dumpfile=forestsdclon
e_expdp_20180810.dmp logfile=forestsdclone_expdp_20180810.log schemas=sdeclone,f
orest exclude=table:\"in (\'SYS_LOG\')\"