pixel 2013-12-15
有时,我们需要在另一个Oracle服务器上重建一个表,而这个表包含非常多的分区/子分区时,DB Link + CTAS不是个好选择,因为我们需要列出所有分区,得到所有分区信息也需要一些时间。这时imp/exp或者Data Pump会是个好的选择。我们分两种情况讨论
exp userid=<schema>@<service name/sid> parfile='<parfile>'
--
grants=n
indexes=n
triggers=n
constraints=y
STATISTICS=NONE
LOG=exp.log
tables=
query="where 1=0"
--Import to target database
Login
imp <target schema>@<target service name> file=xxx.dmp tables='<table_list>'
create directory ext_data AS '/home/oracle/data';
expdp userid=sh@orcl parfile=test1.par
directory=ext_data
EXCLUDE=INDEX,GRANT,TRIGGER,STATISTICS
LOGFILE=test1.log
tables=test1
dumpfile=test1.dmp
query="where 1=0"
impdp sh@orcl parfile=test2_imp.par
directory=ext_data
REMAP_TABLESPACE=sh_data:USERS,sh_data_1:USERS
REMAP_SCHEMA=SH:SCOTT
tables=test2
dumpfile=test2.dmp
相关阅读: