expdp expuser/oracle parfile=exptable.par content=metadata_only cluster=n
编辑exptable.par文件
more exptable.par
dumpfile=mdm.dmp
logfile=mdm.log
schemas=mdm
directory=expdp_dmp
exclude=statistics
flashback_scn=3523577018
PARALLEL=4
COMPRESSION=all
include=TABLE:"IN (select OWNER,TABLE_NAME from dba_tables where owner='MDM2' and table_name like 'W_%' escape '_')"
也可以创建一个exptable表,将需要导出导入的表名复制进去
create table exptable as select table_name from dba_tables where ......
然后
include=TABLE:"IN (select TABLE_NAME from exptable)"
标签:expdp,mdm,导入,exptable,TABLE,多表,table,select From: https://www.cnblogs.com/nanblog/p/17433963.html