Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> Spool output issue on solaris
This is what i am doing:
1- login to sqlplus on solaris 2- spool temp.out 3- run an sql file useing: @myfile.sql Sql file contains this: set termout off set head off set echo off set feedback off select * from dual; set termout on set head on set echo on set feedback on
Now when i place following in a shell script and run it
$ORACLE_HOME/bin/sqlplus liserv/liserv_at_webny << EOF
set feedback off
set head off
set echo off
set termout off
spool output.txt
select * from dual;
spool off
set feedback on
set head on
set echo on
set termout on
exit;
Now question is that in later case where i use shell script along with out put of query , WHY DO I SEE THE ACTUAL SQL STATEMENT IN SPOOL FILE ALSO? Even though i have feedback, echo and termout off .
Any way around.
I want ONLY output of query in spool file when sql file is run using a SHELL SCRIPT!.
Thanks.
Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services ---------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Thu Dec 19 2002 - 09:54:06 CST
![]() |
![]() |