DBA's
Is there a way to spool the output of multiple queries
to a spool file without the query being sent to the spool
file. I have tried
set feedback off
set echo off
However the query still gets sent to the spool file
e.g
sql> set feedback off;
sql> set echo off;
sql> spool c:\test.out
sql> select * from emp;
sql> select * from sal;
sql> spool off
I do not want the 2 select statements in the spool file.
Any help appreciated
Thanks
-u-
Is there a way to spool the output of multiple queries
to a spool file without the query being sent to the spool
file. I have tried
set feedback off
set echo off
However the query still gets sent to the spool file
e.g
sql> set feedback off;
sql> set echo off;
sql> spool c:\test.out
sql> select * from emp;
sql> select * from sal;
sql> spool off
I do not want the 2 select statements in the spool file.
Any help appreciated
Thanks
-u-