2

I have installed oracle 11g XE Release 11.2.0.2.0 - 64bit and sqlplus runs fine on this (directory --> /u01/app/oracle/product/11.2.0/xe/bin) +


I have also installed separately oracle instant client -basic and devel both 11.2.0.2.0 (in /usr/lib/oracle/11.2/client64) and upgraded the LD_LIBRARY_PATH as -----> export LD_LIBRARY_PATH=ls /usr/lib/oracle/11.2/client64/lib & then export LD_LIBRARY_PATH=$ORACLE_HOME/lib.

Now on running a sample program by this: proc iname=hellodb.pc MODE=ORACLE it says Proc command not found.

1
  • 1
    You need to include the path of pro*c executable to the PATH variable(by modifying the ~/.bashrc file), because the proc command is not resolving. Suggest you to follow this Oracle tutorial. You can search for the path of pro*c by doing find / -name "proclab*" Commented Nov 20, 2016 at 21:30

1 Answer 1

-1

Are you sure that you have installed package "instantclient-precomp-linux-x86-64-11.2.0.2.0.zip" witch contains pro*c ? If so, than probably, directory containing binaries of oracle instant client is missing from your PATH variable

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.