2021-11-10 数据泵

1.查看数据dump 位置

select * from dba_directories

2.数据泵导出

1)导出用户及其对象
expdp scott/tiger@orcl schemas=scott dumpfile=expdp.dmp directory=dump_dir logfile=expdp.log;

2)导出指定表
expdp scott/tiger@orcl tables=emp,dept dumpfile=expdp.dmp directory=dump_dir logfile=expdp.log;

3)按查询条件导
expdp scott/tiger@orcl directory=dump_dir dumpfile=expdp.dmp tables=empquery='where deptno=20' logfile=expdp.log;

4)按表空间导
expdp system/manager@orcl directory=dump_dir dumpfile=tablespace.dmp tablespaces=temp,example logfile=expdp.log;

5)导整个数据库
expdp scott/[email protected]/orcl directory=dump_dir dumpfile=ly.dmp full=y  logfile=expdp.log;

3.数据泵导入

1.如果是当前表空间
impdp 用户名/密码@实例名 directory=dpdir dumpfile=需要导入的文件.dmp logfile=xx.log
2.impdp 是A表空间  需要导入B空间   remap_schema 
impdp 用户名/密码@实例名 directory=dpdir dumpfile=需要导入的文件.dmp remap_schema=A:B     logfile=xx.log

你可能感兴趣的:(2021-11-10 数据泵)