Oracle数据库数据导入导出

oracle版本:oracle 10g

导出:
content=ALL
content=METADATA_ONLY
content=DATA_ONLY

expdp username1/password1@sidname1 TABLES=HOTELS directory=DMPDIR dumpfile=hoteldbs_20180427_ALL.dmp logfile=hoteldbs_20180427.dmp_ALL.log content=ALL

导入:
table_exists_action=skip:默认操作
table_exists_action=replace:先drop表,然后创建表,最后插入数据
table_exists_action=append:在原来数据的基础上增加数据
table_exists_action=truncate:先truncate,然后再插入数据

impdp username2/password2@sidname2 directory=DMPDIR dumpfile=hoteldbs_20180427_ALL.dmp logfile=hoteldbs_20180427.dmp_ALL_import.log table_exists_action=replace

如果导出的tablespace名字不一致,需要用到 REMAP_TABLESPACE 来做映射转换
impdp username2/password2@sidname2 directory=DMPDIR REMAP_TABLESPACE=DATA:CRM dumpfile=hoteldbs_20180427.dmp logfile=hoteldbs_20180427.dmp.log table_exists_action=replace

版权声明:
作者:admin
链接:https://www.chenxie.net/archives/1757.html
来源:蜀小陈
文章版权归作者所有,未经允许请勿转载。

THE END
分享
二维码
< <上一篇
下一篇>>