关于ORA-600 [13013]报错一次维护记录

    最近客户ORACLE数据库遇到断电,重新启动之后,反馈实例经常性自动关闭。
ORACLE环境为:ORACLE11.2.0.4 单机
OS版本为:centos6.7
通过查看ALTER 日志发现如下错误。
Errors in file /home/oracle/app/diag/rdbms/asd/asd/trace/asd_smon_24301.trc  (incident=464751):
ORA-00600: internal error code, arguments: [13013], [5001], [268], [8457615], [5], [8457615], [17], [], [], [], [], []
Use ADRCI or Support Workbench to package the incident.
See Note 411.1 at My Oracle Support for error and packaging details.
Non-fatal internal error happenned while SMON was doing logging scn->time mapping.
SMON encountered 9 out of maximum 100 non-fatal internal errors.
Sat Feb 24 11:26:09 2018
Sweep [inc][464751]: completed

MOS上描述:
Format: ORA-600 [13013] [a] [b] {c} [d] [e] [f]
Arg [a] Passcount
Arg [b] Data Object number
Arg {c} Tablespace Decimal Relative DBA (RDBA) of block containing the row to be updated
Arg [d] Row Slot number
Arg [e] Decimal RDBA of block being updated (Typically same as {c})
Arg [f] Code


参考一些技术文档,记录处理过程如下:
SQL> select dbms_utility.data_block_address_file(8457615) rfile,
  2  dbms_utility.data_block_address_block(8457615) rblocks
  3   from dual;


     RFILE    RBLOCKS
---------- ----------
         2      69007

SQL> set linesize 999 pagesize 9999
SQL> select owner,segment_name,segment_type,tablespace_name from dba_extents 
  2  where file_id =2
  3  and 69007 between block_id and block_id + blocks -1;


OWNER             SEGMENT_NAME            SEGMENT_TYPE         TABLESPACE_NAME
----------------- -----------------   -------------------- -----------------
SYS               SMON_SCN_TO_TIME_AUX    CLUSTER              SYSAUX

-- 查询受影响表的索引信息
SQL> select owner,index_name from dba_indexes where table_name='SMON_SCN_TIME';
OWNER INDEX_NAME
--------        ---------------------
SYS SMON_SCN_TIME_SCN_IDX
SYS SMON_SCN_TIME_TIM_IDX

-- 在线重建索引
SQL> alter index SMON_SCN_TIME_SCN_IDX rebuild online;

索引已更改。

SQL> alter index SMON_SCN_TIME_TIM_IDX rebuild online;

索引已更改。

通过观察一段时间后,发现实例恢复正常并手动备份数据库。
如果不合理的地方,希望各位多多指教。
-- end --


来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/31406380/viewspace-2151258/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/31406380/viewspace-2151258/

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值