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

Home -> Community -> Usenet -> c.d.o.server -> Re: newbie needs help running old oracle 8i code. procedure? function?

Re: newbie needs help running old oracle 8i code. procedure? function?

From: Rauf Sarwar <rs_arwar_at_hotmail.com>
Date: 4 Jan 2005 09:28:57 -0800
Message-ID: <1104859737.302626.239190@z14g2000cwz.googlegroups.com>

Noel wrote:

<snip>

To add to what Noel posted.

Most likely you want to redirect this to a file. In the script where this anonymous block resides, add the following lines,

set serverout on size 1000000
set echo off
set verify off
set heading off
set termout off
set trimspool on

spool yourfile.txt
-- Your code starts here
declare
...
begin
...
end;
/

-- Your code ends here
spool off

Regards
/Rauf
Received on Tue Jan 04 2005 - 11:28:57 CST

Original text of this message

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