Question,
How do I prevent my shell script from printing the results of a sql statement from on the screen. the following is my script
#!/bin/ksh
sqlplus -s user/password << EOF
@/var/test1.sql
@/var/test2.sql
exit
EOF
In the sql files I am spooling to a file.
Thanks
How do I prevent my shell script from printing the results of a sql statement from on the screen. the following is my script
#!/bin/ksh
sqlplus -s user/password << EOF
@/var/test1.sql
@/var/test2.sql
exit
EOF
In the sql files I am spooling to a file.
Thanks