Detailed Description and Symptoms According to the documentation ucuoci.11g.so should be renamed to ucuoci.so when working with Oracle 11 Client (and Oracle Server 10)
?
SolutionCreate a softlink like in the example below:
libclntsh.so.10.1 -> /u01/app/oracle/product/11.1.0/db_1/lib/libclntsh.so.11.1
ln -s <destination-file> <link2be_created>
unlink <link_to_be-removed>
-- ----------
-- Examples
-- ----------
Link for 8.00A on test (20110829)
ln -s /u01/app/oracle/product/11.1.0/db_1/lib/libclntsh.so.11.1 libclntsh.so.10.1
-- ----------
?