千家信息网

Oracle中出现ORA-00600[KZSRGPW]错误怎么办

发表于:2025-02-01 作者:千家信息网编辑
千家信息网最后更新 2025年02月01日,这篇文章主要介绍了Oracle中出现ORA-00600[KZSRGPW]错误怎么办,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。环境:
千家信息网最后更新 2025年02月01日Oracle中出现ORA-00600[KZSRGPW]错误怎么办

这篇文章主要介绍了Oracle中出现ORA-00600[KZSRGPW]错误怎么办,具有一定借鉴价值,感兴趣的朋友可以参考下,希望大家阅读完这篇文章之后大有收获,下面让小编带着大家一起了解一下。

环境:

DB:Oracle 11.2.0.1.0

OS:Windows Server 2012

问题

数据库服务器异常断电重启后,在数据库服务器本地,通过sqlplus连接sys用户登录数据库,报错ORA-600[KZSRGPW]

问题原因:

怀疑是passwordfile文件损坏;

解决方案:

orapwd命令重新创建口令文件;

ORA-600 [KZSRGPW] When Connecting AS SYSDBA Using The Passwordfile (文档 ID 1073283.1)




修改时间:2017-11-21类型:PROBLEM


In this Document

SymptomsCauseSolutionReferences

SYMPTOMS

The following error is reported in the alert.log and associated trace file when logging in to the database AS SYSDBA using passwordfile authentication:

ksedmp: internal or fatal error
ORA-00600: internal error code, arguments: [kzsrgpw]

Function List (call stack trace):

kzsrgpw <- kzia3a <- kpolna <- kpogsk <- opiodr

SOLUTION

Recreate the passwordfile:

- list users currently granted sysdba and/or sysoper privileges:

select * from v$pwfile_users;

(note this may fail for the same reason)

- stop the database

- recreate the passwordfile:

On Unix/Linux systems:

orapwd file=$ORACLE_HOME/dbs/orapw$ORACLE_SID password=syspassword entries=16

On Windows systems:

orapwd file=%ORACLE_HOME\database\PWD%ORACLE_SID%.ora password=syspassword entries=16

- restart the database and grant sysdba / sysoper privileges to the users listed from the first step

<1span style="font-size:12.0pt;font-family:" color:white;"="">REFERENCES

NOTE:274115.1 - Quick Checklist for User Authentication

感谢你能够认真阅读完这篇文章,希望小编分享的"Oracle中出现ORA-00600[KZSRGPW]错误怎么办"这篇文章对大家有帮助,同时也希望大家多多支持,关注行业资讯频道,更多相关知识等着你来学习!

0