Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> Re: append to a spool file
I think you'll have to resort to host commands:
spool tmp.lst
select * from dual;
spool off
host cat tmp.lst >> myfile.lst
spool tmp.lst
select * from dual;
spool off
host cat tmp.lst >> myfile.lst
Rob Received on Wed Jun 27 2001 - 02:52:26 CDT
![]() |
![]() |