Oracle client installation error – path too long

This limitation is based on older Windows restrictions, where length of environmental variables was important. This limitation is still there in the Oracle installation. Work around this: Step 1: Copy the value of your ‘path’ variable to a text-editor (Ex.: notepad) and save this value as backup. Step 2: Reduce the size of this path … Read more

sqlplus: error while loading shared libraries: libsqlplus.so: cannot open shared object file: No such file or directory

The minimum configuration to properly run sqlplus from the shell is to set ORACLE_HOME and LD_LIBRARY_PATH. For ease of use, you might want to set the PATH accordingly too. Assuming you have unzipped the required archives in /opt/oracle/instantclient_11_1: $ export ORACLE_HOME=/opt/oracle/instantclient_11_1 $ export LD_LIBRARY_PATH=”$ORACLE_HOME” $ export PATH=”$ORACLE_HOME:$PATH” $ sqlplus SQL*Plus: Release 11.1.0.7.0 – Production on … Read more

The provider is not compatible with the version of Oracle client

I’ve been looking into this problem further, and you simply need to grab all the appropriate DLL’s from the same downloaded version of ODP.Net and put them in the same folder as your Exe file, because ODP.Net is fussy about not mixing version numbers. I’ve explained how to do this here: http://splinter.com.au/using-the-new-odpnet-to-access-oracle-from-c Here’s the gist … Read more

tech