1. 程式人生 > >oracle 資料泵匯入與資料泵匯出

oracle 資料泵匯入與資料泵匯出

資料泵匯入:

指令 impdp

一:資料庫所有物件的匯入:

impdp system/tiger dumpfile=pump_dir:mydatabase_%.dat filesize=100m  nologfile=y  job_name=zhang full=y  estimate_only

二:使用者資料的匯入: 

impdp  system/tiger dumpfile=pump_dir:mydatabase_%.dat filesize=100m  nologfile=y  job_name=zhang  schemas=scott

三:匯入特定的表:

impdp  system/tiger dumpfile=pump_dir:mydatabase_%.dat filesize=100m  nologfile=y  job_name=zhang  tables=scott.emp,scott.dept

資料泵匯出:

指令 expdp

一:資料庫所有物件的匯出:

expdp system/tiger dumpfile=pump_dir:mydatabase_%.dat filesize=100m  nologfile=y  job_name=zhang full=y  estimate_only

二:使用者資料的匯出: 

expdp system/tiger dumpfile=pump_dir:mydatabase_%.dat filesize=100m  nologfile=y  job_name=zhang  schemas=scott

三:匯出特定的表:

expdp system/tiger dumpfile=pump_dir:mydatabase_%.dat filesize=100m  nologfile=y  job_name=zhang  tables=scott.emp,scott.dept