微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ORA-13516 / ORA-06512 DBCA建库,密码特殊符号报错

Oracle 11.2.0.4使用DBCA建库,sys/system密码使用了特殊符号结果安装过程中报错。

以下为解决方法

APPLIES TO:
Oracle Database - Standard Edition - Version 11.2.0.2 to 11.2.0.4 [Release 11.2]
information in this document applies to any platform.
SYMPTOMS
 DBCA fails while in the middle of creating the database with the following errors

ORA-13516: AWR Operation Failed: CATPROC not valid
ORA-06512: at "SYS.DBMS_SWRF_INTERNAL", line 206
ORA-06512: at "SYS.DBMS_SWRF_INTERNAL", line 239
ORA-06512: at line 1

CAUSE
 ORA-13516 DURING DB CREATION WHEN DB PWD CONTAINS " " (SPACE) CHaraCTER Bug ID 8633879

This Bug is suspended due to lack of required information, but the issue is solved by using workaround (removing the space and the special characters used in the passwd)

SOLUTION
Do not include any spaces or special characters in the password,

If you are particular with the passwords, then you can reset the passwords once the database is created. Eg: 

conn / as sysdba

alter user USERNAME identified by PWD;

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐