oracle expdp impdp 导出导入(支持高版本到低版本)
Posted wangliaohan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle expdp impdp 导出导入(支持高版本到低版本)相关的知识,希望对你有一定的参考价值。
在plsql或sqlplus中创建目录:
create or replace directory dmp11g as ‘/home/oracle/dmps3‘;
grant read,write on directory dmp11g to system;
导出语句示例:
expdp system/oracle@ip:1521/dbname directory=dmp11g logfile=xxx.log dumpfile=xxx_%U.dmp parallel=8 schemas=user1,user2 compression=all version=11.2.0.0.0 cluster=n
导入语句示例:
impdp system/oracle directory=dmp11g logfile=xxx.09011.log dumpfile=xxx_%U.dmp parallel=8 schemas=user1,user2 cluster=n
导出时剔除某些表:
expdp system/oracle@ip:1521/dbname directory=dmp11g logfile=xxx.log dumpfile=xxx_%U.dmp EXCLUDE=TABLE:\"IN\(\‘table1\‘\)\" parallel=8 schemas=user1,user2 compression=all version=11.2.0.0.0 cluster=n
导出导入时指定表:
expdp system/oracle@ip:1521/dbname directory=dmp11g logfile=xxx.log dumpfile=xxx_%U.dmp parallel=8 tables=user1.table1,user2.table2 compression=all version=11.2.0.0.0 cluster=n
impdp system/Aa123456 directory=dmp11g logfile=xxx.09011.log dumpfile=xxx_%U.dmp parallel=8 tables=user1.table1,user2.table2 cluster=n
以上是关于oracle expdp impdp 导出导入(支持高版本到低版本)的主要内容,如果未能解决你的问题,请参考以下文章
ORACLE使用EXPDP和IMPDP数据泵进行导出导入的方法