码迷,mamicode.com
首页 > 其他好文 > 详细

OGG ORA-1403 NO DATA FOUND

时间:2018-12-20 11:59:08      阅读:180      评论:0      收藏:0      [点我收藏+]

标签:dba   int   this   rac   删除表   tran   data   classic   查看   

近期开始做OGG的项目,测试过程中遇到一个问题。使用CTAS创建一张表,表中有数据,然后使用delete from xxx;删除表之后,replicat进程异常。查看ogg日志,查看官网找到原因。

    官方文档号
    How to Capture the DML(s) Executed by a DDL Trigger (OGG) (文档 ID 1509900.1)

    解决方案
    SOLUTION
By design, Extract (Classic/ Integrated) doesn‘t capture the dmls from a DDL transaction (eg, inserts as a result of CTAS) or the dmls from a DDL trigger regardless of whether DDL replication is enabled or not. This is working correctly as per the design and not a bug

测试过程:
connect cytdas/cytdas
create table oggtest as select * from dba_users;
查看ogg进程正常,数据同步正常
delete from oggtest;
目的端发现replicat进程abend,查看日志发现ORA-01403错误哦。
这里不是BUG,不是BUG,是OGG的设计要求,我们只要工作中注意就好了。
可是把这个表排除掉继续测试。

OGG ORA-1403 NO DATA FOUND

标签:dba   int   this   rac   删除表   tran   data   classic   查看   

原文地址:http://blog.51cto.com/roidba/2333178

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!