OGG-01169

OGG-01169  Oracle GoldenGate Delivery for Oracle, dwarer.prm:  Encountered an update where all key columns for target table CBS_CUST.CB_MULTI_ACCT_RECEIPT_HEADER are not present.

说明:缺乏主键

场景:一个表OGG进程中断,需要重新初始化,导入约束创建失败后,启动OGG复制进程,提示OGG 01169错误。

创建主键约束

主键列
SQL>select index_name,table_name,column_name,COLUMN_POSITION from dba_ind_columns where TABLE_OWNER='A' and table_name='B';
复制端创建索引
SQL>
create unique index a.cc_pk_id on a.tab_cc(id) parallel 12;
alter index a.cc_pk parallel 1;
alter table a.tab_cc add constraint pk_tab_id primary key(id) using index a.cc_pk;

!如果担心复制端存在dml操作,使用Online方式建索引
原文地址:https://www.cnblogs.com/lvcha001/p/13391133.html