RE: I HATE ORACLE LD_LIBRARY PATH - GRRR!!!

2003-10-16 Thread Paula_Stankus
Thanks Jared, Would export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$ORACLE_HOME/lib32:$LD_LIBRARY_PATH: export LD_LIBRARY_PATH_64=$ORACLE_HOME/lib also be correct? -Original Message- Sent: Thursday, October 16, 2003 1:59 AM To: Multiple recipients of list ORACLE-L This one is incorrect:

RE: I HATE ORACLE LD_LIBRARY PATH - GRRR!!!

2003-10-16 Thread Jared Still
Ah, my mistake. Last night I missed the fact that the first one *does* have LD_LIBRARY_PATH in it. Having both the 32 and 64 bit libs in the path could have been your problem. Jared On Wed, 2003-10-15 at 22:59, Jared Still wrote: This one is incorrect: export

RE: I HATE ORACLE LD_LIBRARY PATH - GRRR!!!

2003-10-16 Thread Stephen Lee
If you want a safe way and you are using ksh, you can always use ${LD_LIBRARY_PATH:-/usr/lib} in the list following the = sign. That way, you always have something defined And when nothing is defined, /usr/lib is the default, so you really haven't changed anything by putting it in.

RE: I HATE ORACLE LD_LIBRARY PATH - GRRR!!!

2003-10-16 Thread Paula_Stankus
Apparently was but my understanding of paths is that it goes from first directory listed ...down and so it should have picked up the 64 bit -Original Message- Sent: Thursday, October 16, 2003 12:10 PM To: Multiple recipients of list ORACLE-L Ah, my mistake. Last night I missed the

RE: I HATE ORACLE LD_LIBRARY PATH - GRRR!!!

2003-10-15 Thread Paula_Stankus
So the external procedure call not finding a library was due to LD_LIBRARY_PATH. However, I don't understand why: -Original Message- Sent: Wednesday, October 15, 2003 5:47 PM To: May, James S Cc: Yoshikawa, Makoto D; Evans, Russ F Subject:remembered - relinking Guys,

RE: I HATE ORACLE LD_LIBRARY PATH - GRRR!!!

2003-10-15 Thread Jared Still
This one is incorrect: export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH:$ORACLE_HOME/lib32 export LD_LIBRARY_PATH_64=$ORACLE_HOME/lib This one is correct: export LD_LIBRARY_PATH=$ORACLE_HOME/lib:$LD_LIBRARY_PATH The first one assumes that there is nothing else needed in the