如果我们的apply节点没有开起来的话,我们在capture的alert.log就可能看到类似这样的出错信息。
Wed Jun 28 06:26:58 2006
Propagation Schedule for (STRMADMIN.STREAMS_QUEUE, CLONE.VONGATES.COM) encountered following error:
ORA-02068: 以下严重错误源于CLONE
ORA-01034: ORACLE not available
ORA-27101: shared memory realm does not exist
Wed Jun 28 06:30:03 2006
对这样的出错信息我们知道是因为启动节点的顺序导致的,只要重新启动一下propagation的job就可以了,具体操作语句如下:
begin
dbms_aqadm.disable_propagation_schedule('STRMADMIN.STREAMS_QUEUE', 'CLONE.VONGATES.COM');
end;
begin
dbms_aqadm.enable_propagation_schedule('STRMADMIN.STREAMS_QUEUE', 'CLONE.VONGATES.COM');
end;
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/29987/viewspace-51954/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/29987/viewspace-51954/