ogg实现Oracle到SQL Server 2005的同步(2)

MANAGER    RUNNING
EXTRACT    STOPPED    EXT1        00:00:00      163:48:28
EXTRACT    STOPPED    MSEXT      00:00:00      187:23:13
EXTRACT    STOPPED    PUMP1      00:00:00      163:48:25
REPLICAT    ABENDED    ORAREP      00:00:00      16:57:48
REPLICAT    STOPPED    REP1        00:00:00      162:49:46
REPLICAT    RUNNING    RPL01      00:00:00      00:00:04
2.在源端(oracle)进行DML操作
 SQL> insert into t01 select 'lyn'||rownum from dual connect by level<=100;

已创建100行。

SQL> commit;

提交完成。

SQL> insert into t02 select rownum,'moon'||rownum from dual connect by level<=100;

已创建100行。

SQL> commit;

提交完成。

SQL> select count(*) from t01;

COUNT(*)
----------
      100

SQL> select count(*) from t02;

COUNT(*)
----------
      100
3.在目标端(sql server)查看数据同步复制情况
C:\>sqlcmd -S kermart -U sa -P sa -d TEST
1> select count(*) from hjj.t01;
2> go

-----------
        100

(1 行受影响)
1> select count(*) from hjj.t02
2> go

-----------
        100

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/5067b4608e677ee0da04ce47c0213409.html