CAPTURE_DB1 LOCAL ENABLED 2014/9/23 13:04:57 DB1_QUEUE 735788 735788
1.3.2 oracle stream的停止
第一步,主库关闭capture进程,srream管理用户
Connect test/test
begin
dbms_capture_adm.stop_capture(
capture_name => 'capture_db1');
end;
第二步,备库关闭apply进程,sream管理用户
begin
dbms_apply_adm.stop_apply(
apply_name => 'apply_dbwin2');
end;
1.4 oracle stream的测试
主库建表
SQL> create table u3(id3 number(10));
Table created
SQL> commit;
Commit complete
备库检查
SQL> select * from u3;
ID3
-----------
主库插入记录
SQL> insert into u3 values(3);
1 row inserted
SQL> commit;
Commit complete
备库检查
SQL> select * from u3;
ID3
-----------
3