[Oracle] Data Pump 详细使用教程(1)- 总览
[Oracle] Data Pump 详细使用教程(2)- 总览
[Oracle] Data Pump 详细使用教程(3)- 总览
[Oracle] Data Pump 详细使用教程(4)- 总览
[Oracle] Data Pump 详细使用教程(5)- 总览
source_db = (DESCRIPTION = (ADDRESS_LIST = (ADDRESS = (PROTOCOL = TCP)(HOST = 192.168.1.15)(PORT = 1521)) ) (CONNECT_DATA = (sid = orcl) ) )
SQL>create public database link source_db_link connect to system identified by *** using 'test15'; Database link created. SQL>select instance_name from v$instance@source_db; INSTANCE_NAME ---------------- orcl
$ expdp system directory=dump_dir network_link=test15 tables=test.test dumpfile=test.dmp logfile=expdp_test.log
$ impdp system directory=dump_dir network_link=test15 tables=test.test logfile=impdp_test.log