Trying to execute a shell script from putty and getting an error
I have a shell script (abc123.sh) that contains the following:
cd /d01/oradata
sqlldr scott/tiger@DEV control=winreport.ctl log=winreport.log
Basically executing this script should kick off the sql loader script that will load data into an Oracle database table. I use the following to execute the script
-bash-3.00$ ./abc123.sh
Once I execute this script in putty, it throws an error saying that "sqlldr:command not found". Any ideas on how to tackle this?