Dear Experts,
set feedback off
set heading off
set pagesize 0
spool abc
select * from customer;
spool off
abc.lst
---------------
SQL> select * from customer;
KC 22 MT 23
SC 22
aa 33
cc 20
aa 22
SQL> spool off
How can I remove "SQL>select * from customer;" &
"SQL> spool off" these two lines??
Thanks!!
Start Free Trial