您的位置:首页 > 数据库 > Oracle

DBCA创建数据库ORA-01034 ORACLE not available

2014-07-30 14:09 1011 查看


SYMPTOMS

在利用dbca创建数据库时,当设置完成所有参数,开始装时 跑到2% 就报错 ORA-01034 ORACLE not available,

如下图




CAUSE

There's a script in ORACLE_HOME/sqlplus/admin which is called glogin.sql. This script is automatically run when the user starts SQL*PLUS or uses the Connect command, hence any command
added to it will be executed.

Checking the script, it had a "select * from v$instance;" statement added. It was always executing this statement when SQL*PLUS was started or when Connect was issued, and this statement is returning the ORA-01034 when invoking DBCA.


SOLUTION

1. Check the glogin.sql script in ORACLE_HOME/sqlplus/admin and make sure it has no statements that could cause the ORA-01034.

disable glogin.sql (mv glogin.sql glogin.sql.bak)

2. If the issue is still not resolved, then please log an SR with Oracle Support.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: