分类: Oracle
2012-08-19 23:19:39
数据泵导入:
指令 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