Data from oracle to oracle summary

A, by exporting and importing the file .dmp method (for a greater amount of data)
1, deriving
the expdp SDATA / SDATA @ ftpca Directory = EXP_DMPDIR the dumpfile = 20190514_hoop113.dmp
Tables = sdata.hoop

2、导入
impdp sdata/sdata@ftpca directory=DIR_SDATA dumpfile=20190514_hoop113.dmp
logfile=20190514.log tables_exists_action=append

Second, by way of built dblink (smaller amount of data time)
Create public MyFirstDblink Database Link User to Connect IDENTIFIED by "123456" the USING '192.168.1.1/orcl'

insert into sdata.s03_cux_lone select * from sdata.s03_cux_lone @MyFirstDblink

Guess you like

Origin blog.csdn.net/dscfirst/article/details/90270421