Oracle在刪除數據是如下錯誤:api
ORA-00600: internal error code, arguments: [ktbesc_plugged], [], [], [], [], [], [], [], [], [], [], []oracle
緣由是因爲進行過表空間的傳輸操做。app
解決方法:jsp
ALTER TABLE 表名 MOVE tablespace 表空間名 ;oop
Ora-600 [Ktbesc_plugged] Error On Insert Or Delete (文檔 ID 1372941.1) | ![]() |
![]() |
In this Documentui
APPLIES TO:Oracle Database - Enterprise Edition - Version 11.2.0.3 to 11.2.0.3 [Release 11.2]Information in this document applies to any platform. SYMPTOMSReceiving the following error on insert or delete against one particular table.ORA-00600: internal error code, arguments: [ktbesc_plugged], [], [], [], [], [], [], [], [], [], [], [] Call Stack Trace = ktbesc -> kdiescpin -> kdifind -> kdiblTestPrefixUniqueness -> kdiblLockPiece -> kdiblLockRange CHANGESTable is located on a recently plugged in tablespace into an 11.2.0.3 database.CAUSEBug:12919564 where this problem was introduced in 11.2.0.3.SOLUTIONWe successfully used a temporary workaround of moving the problem table to another tablespace. Once moved, we were able to insert or delete without issue.alter table <table name> move tablespace <tablespace name>; There is an additional workaround of setting "_fastpin_enable"=0 which is discussed in Document 12919564.8. Long term resolution would be to apply one-off Patch:12919564. |