systemsfsu
MIS
I tried installing Oracle 10g on a unix box. My installtion was sucessful but when I try to run sqlplus I get the following error.
________________________
[sai@ma-1 bin]$ ./sqlplus
Error 6 initializing SQL*Plus
Message file sp1<lang>.msb not found
SP2-0750: You may need to set ORACLE_HOME to your Oracle software directory
____________________________
I searched online and found that I had to set my $ORACLE_HOMe properly. Now even after doing that I get the same error.
My .bash_profile has the follwing contents:
-----------------------------------
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH
unset USERNAME
export ORACLE_HOME=$/home/sai/oracle/product/10.2.0/db_1
export ORACLE_SID=hcsdatabase
export PATH=$PATH:$ORACLE_HOME/bin
export PATH
export LD_LIBRARY_PATH=$ORACLE_HOME/lib
--------------------------------------
Please let me know if am making a mistake.
Thanks
-Sai
________________________
[sai@ma-1 bin]$ ./sqlplus
Error 6 initializing SQL*Plus
Message file sp1<lang>.msb not found
SP2-0750: You may need to set ORACLE_HOME to your Oracle software directory
____________________________
I searched online and found that I had to set my $ORACLE_HOMe properly. Now even after doing that I get the same error.
My .bash_profile has the follwing contents:
-----------------------------------
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs
PATH=$PATH:$HOME/bin
export PATH
unset USERNAME
export ORACLE_HOME=$/home/sai/oracle/product/10.2.0/db_1
export ORACLE_SID=hcsdatabase
export PATH=$PATH:$ORACLE_HOME/bin
export PATH
export LD_LIBRARY_PATH=$ORACLE_HOME/lib
--------------------------------------
Please let me know if am making a mistake.
Thanks
-Sai