Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Writing to a text file from PL/SQL

Re: Writing to a text file from PL/SQL

From: Jasna Prester <jasna.prester_at_viadukt.tel.hr>
Date: Tue, 23 Jul 2002 15:46:14 +0200
Message-ID: <ahjn0e$brhn$1@as201.hinet.hr>


Please help me out one more time,
I wrote this sql procedure:

set serveroutput on size 100000
spool c:\temp\via2.txt
declare
f varchar2(30);
f:='hello';
dbms_output.put_line(f);
spool off;
end;

The file gets created but it stays empty - what am I doing wrong?

Thanks very much for help in advence,
Jasna Prester Received on Tue Jul 23 2002 - 08:46:14 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US