Wednesday, February 8, 2012

REP_51002 informatica

REP_51002 Database driver event...Error occurred loading library [libclntsh.so.10.1: cannot open shared object file: No such file or directory]Database driver event...Error occurred loading library [libpmora8.so]


This was cuased by environment setup and oracle client installation.

1. make user put $ORACLE_HOME/lib into variable LD_LIBRARY_PATH
2. check if the missing lib file (libclntsh.so.10.1) is in $ORACLE_HOME/lib
ls libclntsh.so*
if you don't have the exact name, you might have file like libclntsh.so.11.1, which is higher then the missing one.

create s symbolic
ln -s libclntsh.so.11.1 libclntsh.so.10.1

you should be able to clear the error.

No comments:

Post a Comment