ORA-00600: internal error code, arguments: [13013], [5001], [267], [8389014]
某客戶的一個歷史庫遇到錯誤, 資料庫不定期崩潰,從日誌中可以看到如下內容:
Errors in file /u01/app/oracle/diag/rdbms/orcl2/orcl2/trace/orcl2_smon_6364.trc (incident=336027):
ORA-00600: internal error code, arguments: [13013], [5001], [267], [8389014], [4], [8389014], [3], [], [], [], [], []
Incident details in: /u01/app/oracle/diag/rdbms/orcl2/orcl2/incident/incdir_336027/orcl2_smon_6364_i336027.trc
Wed Jul 01 01:10:43 2020
System state dump requested by (instance=1, osid=6334 (PMON)), summary=[abnormal instance termination].
System State dumped to trace file /u01/app/oracle/diag/rdbms/orcl2/orcl2/trace/orcl2_diag_6344_20200701011043.trc
Wed Jul 01 01:10:43 2020
PMON (ospid: 6334): terminating the instance due to error 474
Instance terminated by PMON, pid = 6334
此ORA-00600官方解釋如下:
ORA-600 [13013] [a] [b] [c] [d] [e] [f]
This format relates to Oracle Server 8.0.3 to 10.1
Arg [a] Passcount
Arg [b] Data Object number
Arg [c] Tablespace Relative DBA of block containing the row to be updated
Arg [d] Row Slot number
Arg [e] Relative DBA of block being updated (should be same as [c])
Arg [f] Code
查詢出錯的資料庫物件:
SQL> Select object_name,object_type,owner from dba_objects where data_object_id=267;
OBJECT_NAME OBJECT_TYPE OWNER
-------------------- ------------------- ------------------------------
SMON_SCN_TIME TABLE SYS
SMON_SCN_TO_TIME_AUX CLUSTER SYS
SQL> select dbms_utility.data_block_address_file(8389014) Rfile# ,dbms_utility.data_block_address_block(8389014) "Block#" from dual;
RFILE# Block#
---------- ----------
2 406
對錶進行校驗並進行DBV校驗資料檔案
SQL> Analyze table sys.smon_scn_time validate structure cascade online ;
Analyze table sys.smon_scn_time validate structure cascade online
*
ERROR at line 1:
ORA-01499: table/index cross reference failure - see trace file
SQL> /
Analyze table sys.smon_scn_time validate structure cascade online
*
ERROR at line 1:
ORA-01499: table/index cross reference failure - see trace file
分析表報告表結構有問題
[oracle@orcl2db trace]$ dbv file=/u02/oradata/orcl2/SYSAUX01.DBF
DBVERIFY: Release 11.2.0.4.0 - Production on Thu Jul 2 09:33:24 2020
Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
DBVERIFY - Verification starting : FILE = /u02/oradata/orcl2/SYSAUX01.DBF
DBVERIFY - Verification complete
Total Pages Examined : 1148160
Total Pages Processed (Data) : 520451
Total Pages Failing (Data) : 0
Total Pages Processed (Index): 505161
Total Pages Failing (Index): 0
Total Pages Processed (Lob) : 9746
Total Pages Failing (Lob) : 0
Total Pages Processed (Other): 32538
Total Pages Processed (Seg) : 0
Total Pages Failing (Seg) : 0
Total Pages Empty : 80264
Total Pages Marked Corrupt : 0
Total Pages Influx : 0
Total Pages Encrypted : 0
Highest block SCN : 1480172039 (0.1480172039)
DBV沒有發現存在壞塊
判斷可能索引出了問題。查詢問題表有哪些索引
SQL> select owner, index_name, table_owner from dba_indexes where table_name = 'SMON_SCN_TIME';
OWNER INDEX_NAME TABLE_OWNER
------------------------------ ------------------------------ ------------------------------
SYS SMON_SCN_TIME_SCN_IDX SYS
SYS SMON_SCN_TIME_TIM_IDX SYS
重建兩個索引,並進行分析:
SQL> alter index SMON_SCN_TIME_SCN_IDX rebuild online;
Index altered.
SQL> alter index SMON_SCN_TIME_TIM_IDX rebuild online;
Index altered.
SQL>
SQL>
SQL>
SQL> Analyze table sys.smon_scn_time validate structure cascade online ;
Table analyzed.
analyze並未出錯。問題應當已經解決
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/8520577/viewspace-2701817/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- ORA-00600: internal error code, arguments: [13011]Error
- ORA-00600: internal error code, arguments: [2131], [9], [8]Error
- ORA-00600: internal error code, arguments: [qosdExpStatRead: expcnt mismatch], [Error
- 案例ORA-00600: internal error code, arguments: [qkaffsindex3], [], [], [], []ErrorIndex
- ORA-00600: internal error code, arguments: [knacpft_ProcessFetchedTxns250]Error
- Oracle索引修復 ,ORA-00600: internal error code, arguments: [6200],Oracle索引Error
- 遭遇ORA-00600: internal error code, arguments: [kcrrrfswda.11], [4], [368], [], [], [], [], []Error
- 邏輯STANDBY上的ORA-00600: internal error code, arguments: [krvtadc], [], [], [], [], []Error
- 一個特殊的ORA-00600: internal error code, arguments: [6302], [20], [], [], [], [], [], []Error
- ORA-00600: internal error code, arguments: [kzsrsea] DataGuard環境的異常Error
- ORA-00600: internal error code, arguments: [kcratr_scan_lastbwr]邏輯壞塊解決ErrorAST
- BUG:ORA-00600: internal error code, arguments: [kmgs_pre_process_request_6], [6], [2873], [2560], [3Error
- ORA-06544:PL/SQL:internal error,arguments:[56319]SQLError
- 【故障處理】ORA-600:[13013],[5001]故障處理
- ORA-00600: [OSDEP_INTERNAL]
- 【ERROR】OPatch failed with error code 73ErrorAI
- RA-03137:TTC protocol internal error:[12333]ProtocolError
- [20201111]11.2.0.4版本仍然存在的一個未修復Bug ora-00600 [13013].txt
- OPatch failed with error code 73AIError
- Error Domain=kAFAssistantErrorDomain Code=7ErrorAI
- MyEclipse - Retrieving archetypes: has encountered a problem An internal error occurred duringEclipseError
- HTTP 錯誤 500.21 - Internal Server Error 解決方案HTTPServerError
- HTTP 錯誤 500.19 - Internal Server Error v4.0.30319HTTPServerError
- Mysql系統變數中 log_error_services | log_filter_internal; log_sink_internal 和 log_error_verbosity | 2 解釋MySql變數ErrorFilter
- Python錯誤:PyCharm 安裝出錯 Internal error,please。。。PythonPyCharmError
- [Code Composer Studio] fatal error #6001Error
- ubuntu下pig報錯ERROR 2999: Unexpected internal error. Failed to create DataStorage的解決UbuntuErrorAIAST
- 錯誤解決:cc: Internal error: Killed (program cc1)Error
- ORA-00257:archiver error. Connect internal only,until freed.HiveError
- ORA-03137: TTC protocol internal error: [12333]分析及處理ProtocolError
- HTTP 錯誤 500.19- Internal Server Error 錯誤解決方法HTTPServerError
- weblogic報錯: OPatch failed with error code 73WebAIError
- Function.caller, arguments.caller, arguments.callee, arguments.callee.calllerFunction
- 執行flutter run命令報錯::ERROR: Could not connect to lockdownd, error code -17FlutterError
- 解決方案 | MiKTex SSL connect error code 35Error
- Sub-process /usr/bin/dpkg returned an error codeError
- [題解]AT_abc267_f [ABC267F] Exactly K Steps
- Error - RtlWerpReportException failed with status code :-1073741823. Will try to launch the processErrorExceptionAI