您的位置:首页 > 其它

ORA-00600 internal error code, arguments [%s] [%s] [%s] [keltnfy-ldmInit] [46] [1] 错误的解决方法

2010-07-16 17:05 477 查看
做RMAN 的实验,备份的时候异常中断,返回错误:

ORA-00600: internal error code, arguments: [%s], [%s], [%s], [%s], [%s], [%s], [%s], [%s]

一个备份也能600错误,有点意外。 本打算重启Oracle的,shutdown abort 都执行不了,无耐把系统重启一下,在看看。 重启之后,在连,报了另外一个错误,不过还是600:

ORA-00600: internal error code, arguments: [keltnfy-ldmInit], [46], [1], [], [], [], [], []

600 是Oracle 内部的错误,一般出现600 都是比较棘手的,很可能是Oracle bug。在启动Listener的时候也报机器名的错误,觉得hosts文件有问题,在host文件里添加了一条:10.85.10.1 db1

[root@db1 ~]# more /etc/hosts

# Do not remove the following line, or various programs

# that require network functionality will fail.

127.0.0.1 localhost

10.85.10.1 db1

然后检查一下listener.ora 和 tnsnames.ora 文件:

LISTENER_ORCL =

(ADDRESS = (PROTOCOL = TCP)(HOST = db1)(PORT = 1521))

ORCL =

(DESCRIPTION =

(ADDRESS = (PROTOCOL = TCP)(HOST = db1)(PORT = 1521))

(CONNECT_DATA =

(SERVER = DEDICATED)

(SERVICE_NAME = orcl)

)

)

LISTENER =

(DESCRIPTION_LIST =

(DESCRIPTION =

(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC1))

(ADDRESS = (PROTOCOL = TCP)(HOST = db1)(PORT = 1521))

)

)

在启动,搞定了:

SQL> conn / as sysdba

Connected to an idle instance.

SQL> startup

ORA-00600: internal error code, arguments: [keltnfy-ldmInit], [46], [1], [], [], [], [], []

SQL> startup

ORA-24324: service handle not initialized

ORA-01041: internal error. hostdef extension doesn't exist

SQL> exit

Disconnected

[oracle@db1 ~]$ sqlplus /nolog

SQL*Plus: Release 10.2.0.1.0 - Production on Thu Jul 15 21:17:01 2010

Copyright (c) 1982, 2005, Oracle. All rights reserved.

SQL> conn / as sysdba

Connected to an idle instance.

SQL> startup

ORACLE instance started.

Total System Global Area 247463936 bytes

Fixed Size 1218748 bytes

Variable Size 75499332 bytes

Database Buffers 163577856 bytes

Redo Buffers 7168000 bytes

Database mounted.

Database opened.

SQL>

只是一个测试环境,如果在生产库上出现600的错误,bug的可能就非常大了。 所以还是要慢慢积累经验。

------------------------------------------------------------------------------

Blog: http://blog.csdn.net/tianlesoftware
网上资源: http://tianlesoftware.download.csdn.net
相关视频:http://blog.csdn.net/tianlesoftware/archive/2009/11/27/4886500.aspx

DBA1 群:62697716(满); DBA2 群:62697977

DBA3 群:63306533; 聊天 群:40132017
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐