使用sqlplus总是提示如下错误:
[oracle@aca80232 ~]$ sqlplus /nologSQL*Plus: Release 11.2.0.1.0 Production on Thu Aug 11 12:30:49 2011Copyright (c) 1982, 2009, Oracle.  All rights reserved.SQL> conn /as sysdba
ERROR:
ORA-09925: Message 9925 not found; No message file for product=RDBMS,
facility=ORA
Linux Error: 2: No such file or directory
Additional information: 9925
ORA-09925: Message 9925 not found; No message file for product=RDBMS,
facility=ORA
Linux Error: 2: No such file or directory
Additional information: 9925
SQL> startup
ORA-01078: Message 1078 not found; No message file for product=RDBMS, facility=ORA
LRM-00109: Message 109 not found; No message file for product=ORACORE, facility=LRM
SQL> 附上在centos中配置的环境变量
[oracle@aca80232 ~]$ more .bash_profile 
# .bash_profile# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi# User specific environment and startup programsPATH=$PATH:$HOME/bin:$ORACLE_HOME/binexport PATH
unset USERNAMEexport ORACLE_SID=orcl
export ORACLE_BASE=app/oracle
export ORACLE_HOME=$ORACLE_BASE/product/11.2.0/dbhome_1
export LD_LIBRARY_PATH=$ORACLE_HOME/lib:/usr/lib
export PATH=app/oracle/product/11.2.0/dbhome_1/bin:/bin:/usr/bin:/usr/sbin:/usr/local/bin:/usr/X11R6/bin
export PATH=${PATH}:$ORACLE_BASE/common/oracle/bin
export PATH=$PATH:$ORACLE_HOME/bin
export NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1
export ORA_NLS10=$ORACLE_HOME/nls/data
export TNS_ADMIN=$ORACLE_HOME/network/admin
umask 022
此为oracle的安装路径
[oracle@aca80232 ~]$ cd $ORACLE_HOME
[oracle@aca80232 dbhome_1]$ pwd
/home/oracle/app/oracle/product/11.2.0/dbhome_1