in reply to Re^2: Connect to Remote oracle DB
in thread Connect to Remote oracle DB

my first guess is you don't have the sqlplus binary in your PATH on the target server.

have you tried running it from the command line?

what do you get when you run:

ssh -o StrictHostKeyChecking=no <your_db_host> sqlplus <your_connect_s +tring>
on your *nix shell?

Replies are listed 'Best First'.
Re^4: Connect to Remote oracle DB
by charithd (Acolyte) on Feb 17, 2012 at 06:31 UTC
    it's says:bash: sqlplus: command not found But sqlplus is working fine on both my local host and remote db. Any way I Decided to use DBI ,Thank you very much for your great help.