Link to home
Start Free TrialLog in
Avatar of LindaC
LindaCFlag for Puerto Rico

asked on

I included a # (pound sign) in a script believing it was to "comment the line", but it executed the line anyway

I had a script to shutdown the database.  This script runs in the cron Sundays.
The cron somehow did not execute the script.
I thought the script has something wrong, and started commenting out the  following lines in the script with a # (pound sign).
# lsnrctl stop
# shutdown immediate << EOF

Then I added a:
spool test.log
 select count (*) from dba_data_files;
spool off;

I tried to run it from the cron but it did not run, so I tried to run it manually, and it started to shutdown the database.  The listener was not stopped.
Why the pound sign was respected in a OS command, but the command inside the Sqlplus was executed regardless of the pound sign in fron of the line.

This was done with the oracle user which has this shell in the /etc/passwd:

oracle:x:269:201::/oravl01/oracle:/bin/ksh
ASKER CERTIFIED SOLUTION
Avatar of bpeterse
bpeterse
Flag of United States of America image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of XoF
XoF

if bpeterse's comment wasn't the solution, then please post your script. The line
shutdown immediate << EOF
makes no sense for me, since shutdown IMHO is not a command expecting more input. So I assume, that you messed up with a here-document (the "<< EOF" construct)

-XoF-