A,B库 表的同步更新

首先配置监听和客户端,使 A 库为客户端, B 库为 server B 打开对自己 IP 的监听, A 打开对 Bip 的客户连接通道。
Aip 192.168.18.47
B ip 192.168.18.87

测试连接:

B 上用 scott 建立一个表

A 上能看到 B 上建立的表

本地登陆赋予 scott 建立连接的权限
Scott 建立连接

迁移数据

创建存储过程
create procedure pro_insert_t1
    as
   begin
    insert into t1 select * from t1@db87 where id not in (select id from t1);
    commit;
    end;
/

创建 job 使存储过程按时执行
一分钟执行一次

大功告成
B 中加入数据,一分钟后后看 A 中的变化

9:45 分的时候查 A 库中 t1

你可能感兴趣的:(oracle)