1.创建文件对象
注意相关系统文件目录要有oracle用户权限。
SQL> create directory movedata as '/home/oracle/data';
2.授权
SQL> grant read on directory movedata to public;
SQL> grant write on directory movedata to public;
3.查看视图
select * from dba_directories;
4.评估导出对象大小
[oracle@instance-ej1hspdt ~]$ expdp c##fixf/12345 directory=movedata estimate_only=yes;
5。导出
expdp用flashback_scn或者flashback_time=sysdate参数保证数据一致性
[oracle@instance-ej1hspdt ~]$ expdp c##fixf/12345 schemas=scott directory=movedata dumpfile=fixf.dmp logfile=fixf.log fla
shback_time=sysdate;
导出特定表
expdp c##fixf/12345 directory=movedata dumpfile=fixf.dmp tables=fixf_svr_s
zh;
将数据c##fixf导入fixf
[oracle@oracle ~]$ impdp fixf/12345 directory=movedata dumpfile=fixf.dmp remap_schema=c##fixf:fixf;