前天刚刚解决一个ora-600问题:
http://www.itpub.net/thread-1422891-1-4.html
开发刚刚又报对一个表select 的时候,会有ora-600错误报出,试了一下:
SQL> select * from napc.table_name;
ERROR at line 1:
ORA-00600: internal error code, arguments: [20445], [381903], [382266], [], [],
[], [], []
alert日志:
Errors in file /oracle/app/admin/napc/udump/napc_ora_16615.trc:
ORA-00600: internal error code, arguments: [20445], [381903], [382266], [], [], [], [], []
Wed Apr 27 18:53:30 2011
Errors in file /oracle/app/admin/napc/udump/napc_ora_16615.trc:
ORA-00600: internal error code, arguments: [20445], [381903], [382266], [], [], [], [], []
Wed Apr 27 18:54:09 2011
Errors in file /oracle/app/admin/napc/udump/napc_ora_16615.trc:
ORA-00600: internal error code, arguments: [20445], [381903], [382266], [], [], [], [], []
Wed Apr 27 19:03:58 2011
Errors in file /oracle/app/admin/napc/udump/napc_ora_17264.trc:
ORA-00600: internal error code, arguments: [20445], [381903], [382266], [], [], [], [], [
napc_ora_16615.trc里面都是些
KCBS: nbseg[12] is 176
KCBS: nbseg[13] is 176
KCBS: nbseg[14] is 175
KCBS: nbseg[15] is 176
KCBS: nbseg[16] is 176
KCBS: nbseg[17] is 175
KCBS: nbseg[18] is 176
这样的东东,就不全部贴出来了。
操作系统sunos,数据库版本 10.2.0.1
大大说,这些库装了很久了,又是开发库,就不要升级算了
上网查了一把,说是 Bug 3738431问题,可以通过drop掉表和索引解决:
SQL> drop table napc.table_name;
drop table napc.table_name;
*
ERROR at line 1:
ORA-00600: internal error code, arguments: [15264], [], [], [], [], [], [], []
错误码不一样了。
SQL> purge recyclebin;
Recyclebin purged.
SQL> select * from napc.table_name;
ok了,问题解决。
http://www.itpub.net/thread-1422891-1-4.html
开发刚刚又报对一个表select 的时候,会有ora-600错误报出,试了一下:
SQL> select * from napc.table_name;
ERROR at line 1:
ORA-00600: internal error code, arguments: [20445], [381903], [382266], [], [],
[], [], []
alert日志:
Errors in file /oracle/app/admin/napc/udump/napc_ora_16615.trc:
ORA-00600: internal error code, arguments: [20445], [381903], [382266], [], [], [], [], []
Wed Apr 27 18:53:30 2011
Errors in file /oracle/app/admin/napc/udump/napc_ora_16615.trc:
ORA-00600: internal error code, arguments: [20445], [381903], [382266], [], [], [], [], []
Wed Apr 27 18:54:09 2011
Errors in file /oracle/app/admin/napc/udump/napc_ora_16615.trc:
ORA-00600: internal error code, arguments: [20445], [381903], [382266], [], [], [], [], []
Wed Apr 27 19:03:58 2011
Errors in file /oracle/app/admin/napc/udump/napc_ora_17264.trc:
ORA-00600: internal error code, arguments: [20445], [381903], [382266], [], [], [], [], [
napc_ora_16615.trc里面都是些
KCBS: nbseg[12] is 176
KCBS: nbseg[13] is 176
KCBS: nbseg[14] is 175
KCBS: nbseg[15] is 176
KCBS: nbseg[16] is 176
KCBS: nbseg[17] is 175
KCBS: nbseg[18] is 176
这样的东东,就不全部贴出来了。
操作系统sunos,数据库版本 10.2.0.1
大大说,这些库装了很久了,又是开发库,就不要升级算了
上网查了一把,说是 Bug 3738431问题,可以通过drop掉表和索引解决:
SQL> drop table napc.table_name;
drop table napc.table_name;
*
ERROR at line 1:
ORA-00600: internal error code, arguments: [15264], [], [], [], [], [], [], []
错误码不一样了。
SQL> purge recyclebin;
Recyclebin purged.
SQL> select * from napc.table_name;
ok了,问题解决。
来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/23203681/viewspace-701266/,如需转载,请注明出处,否则将追究法律责任。
转载于:http://blog.itpub.net/23203681/viewspace-701266/
本文介绍了一个ORA-00600内部错误的解决方案,该问题出现在对特定表进行SELECT操作时。通过清除回收站并重新创建表,成功解决了这一问题。

被折叠的 条评论
为什么被折叠?



