您好,登錄后才能下訂單哦!
這篇文章將為大家詳細講解有關DML DDL 都報ORA-00600: [kntgMvLogObjn]的解決辦法,文章內容質量較高,因此小編分享給大家做個參考,希望大家閱讀完這篇文章后對相關知識有一定的了解。
對表進行DML 或DDL 都報ORA-00600: [kntgMvLogObjn]。
(1)先刪除materialized view log ,然后再對表進行DML 或DDL 。
select * from dba_mviews;
select * from dba_mview_logs;
drop materialized view log on TABLE_NAME;
(2)如果第一步還不能解決,那么就需要重建MATERIALIZED VIEW LOG。
一般是之前重命名過用戶或表。可能是在obj$等數據字典中的信息出現了不一致的情況。
可以參考 Doc ID 1612402.1 對于這類問題Oracle的一個建議就是使用重建物化視圖日志,使用with rowid的方式來創建,然后刪除。
SELECT * FROM sys.MLOG$;
CREATE MATERIALIZED VIEW LOG ON TABLE_NAME WITH ROWID;
drop materialized view log ON TABLE_NAME;
Cause
The MLOG$ entry didn't exist but the MLOG$_... segment in OBJ$ still existed, and the table referenced in its flags that it uses a materialized view log.
To implement a solution for this issue please execute the following steps in the given order:
create a new materialized view log using CREATE MATERIALIZED VIEW LOG ON <table> WITH ROWID;<br font-size:18px;text-align:justify;text-indent:27px;white-space:normal;" /> drop the table with the materialized view log defined on it
關于DML DDL 都報ORA-00600: [kntgMvLogObjn]的解決辦法就分享到這里了,希望以上內容可以對大家有一定的幫助,可以學到更多知識。如果覺得文章不錯,可以把它分享出去讓更多的人看到。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。