SQLPLUS Fails With SP2-1503 SP2-0152 After New 11.2 Installation解決

jeanron100發表於2013-07-06
今天準備測試一下10g升級到11g的場景,裝完10g的,然後再裝11g的服務端。sqlplus就報錯了。
因為ORACLE_BASE,ORACLE_HOME已經改過來了。但是怎麼試都不行。
查了metalink,上面說可能是因為$ORACLE_HOME/oracore/zoneinfo的許可權可能有問題,我一條一條比對了下,沒發現許可權有問題。
metaLink:
SQLPLUS Fails With SP2-1503 SP2-0152 After New 11.2 Installation [ID 974515.1]

不經意間切換使用者,發現原來切換使用者就能夠搞定。
[ora10g@centos ~]$ sqlplus
SP2-1503: Unable to initialize Oracle call interface
SP2-0152: ORACLE may not be functioning properly


[ora10g@centos ~]$ su - ora10g
Password: 

[ora10g@centos ~]$ sqlplus

SQL*Plus: Release 10.2.0.1.0 - Production on Sat Jul 6 07:37:59 2013

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

然後切換回11g
修改 .bash_profile

# User specific environment and startup programs
export ORACLE_BASE=/u01/app/upg11g
#export ORACLE_BASE=/u01/app/ora10g
#export ORACLE_HOME=$ORACLE_BASE/product/10.2/db_1
export ORACLE_HOME=$ORACLE_BASE/product/11.2/db_home1
[ora10g@centos ~]$ source .bash_profile
[ora10g@centos ~]$ sqlplus
SP2-1503: Unable to initialize Oracle call interface
SP2-0152: ORACLE may not be functioning properly
[ora10g@centos ~]$ su - ora10g
Password: 
[ora10g@centos ~]$ sqlplus

SQL*Plus: Release 11.2.0.1.0 Production on Sat Jul 6 07:44:59 2013

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

Enter user-name: 

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/23718752/viewspace-765659/,如需轉載,請註明出處,否則將追究法律責任。

相關文章