您好,登錄后才能下訂單哦!
OGG出現故障, ORA-01400, cannot insert null into “TEST“.“TEST“
目標端復制進程使用了配置HANDLECOLLISIONS, 此配置在目標端更新時,如果更新不到數據,會將UPDATE轉換成insert
但是因為源端并沒有配置所有列的附加日志,所以,沒有被更新的列并不會包含在insert中,從而導致錯誤
做了以下步驟, 這里是臨時解決方案:
1. 將列修改成null: alter table test modify col1 null;
2. 啟動復制進程
3. 檢查數據:select count(*) from test where col1 is null (發現有八條)
4. 處理并手工同步這八條數據
5. 將字段改成not null : alter table test modify col1 not null;
最終解決: 需要加入表的所有列的附加日志: alter table test add supplemental log data (ALL) columns;
DDL操作在生產環境較為危險, 暫緩動作
MOS文檔ID: Replicat Abends With Errror ORA-01400: Cannot Insert NULL Into Table for Not Null Columns When Specifying INSERTALLRECORDS (文檔 ID 1994869.1)
REPLICAT Reports ORA-01400: Cannot Insert NULL When Using HANDLECOLLISIONS (文檔 ID 1576900.1)
REPLICAT tried to UPDATE an existing row, but none was found, so due to parameter HANDLECOLLISIONS, the failed UPDATE was converted into an INSERT.
That INSERT then failed because the Trail file did not have all the columns, because the record was for an UPDATE for 5 out of 15 columns, where the table on the Oracle database had the NOT NULL constraint set for all columns.
The cause of the problem has been determined from the following points;
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。