Copy tables from 1 Oracle to another Oracle instance -


i have 2 oracle instance:

  • oracle 1
  • oracle 2

i have created database link on oracle 1 connect oracle 2.

i need copy tables oracle 1 oracle 2 oracle 1. possible?

please note know about:

create tmp_table select * table@oracle_2 

but create table in oracle 1 , not oracle 2.

note: need oracle 1, because have many oracle instances , want copy instances in automated way without logging on each oracle.

if there more couple of tables should try using expdp network_link

something this:

expdp test/test@oracle1 tables=tmp_table,tmp_table2 network_link=oracle_2 directory=test_dir dumpfile=tmp.dmp logfile=expdptmp.log 

Comments

Popular posts from this blog

magento2 - Magento 2 admin grid add filter to collection -

Android volley - avoid multiple requests of the same kind to the server? -

Combining PHP Registration and Login into one class with multiple functions in one PHP file -