日期:2014-05-17  浏览次数:20732 次

oracle两个不同的库数据共享的问题
就是有两个库 A,B A中有两张表T1,T2,B中没有表,现在希望能通过一个程序吧A中的两张表复制到B中
这个怎么做啊 
谢谢
Oracle??不同库数据共享?

------解决方案--------------------
用 dblink。
------解决方案--------------------
create  database link  test_link
connect   user_name
identified by password
using 'biaozhifu';

然后
create table  test_table  as  select * from  A.t1@test_link;