SQL Plus error [message #98715] |
Wed, 07 August 2002 12:27 |
Sri Yamujala
Messages: 1 Registered: August 2002
|
Junior Member |
|
|
Hi,
I've installed Oracle 8.1.7.0 on Red Hat Linux 7.2 and when I start sqlplus I get the error:
error while loading shared libraries: libclntsh.so.8.0: cannot open shared object file: No such file or directory. What can I do to fix this problem - please advise.
Thanks and BRgds,
Sri
|
|
|
|
Re: SQL Plus error [message #99045 is a reply to message #98715] |
Fri, 16 April 2004 07:18 |
naveen garg
Messages: 1 Registered: April 2004
|
Junior Member |
|
|
Simply add the following line to the end of your ".profile" if you're using a Bourne-like shell (ask a local guru if you don't know):
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ORACLE_HOME/lib
Or use the following line if you're using a CSH-like shell:
setenv LD_LIBRARY_PATH "$LD_LIBRARY_PATH
$ORACLE_HOME/lib"
|
|
|
|