Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: A Basic PL/SQL Question
Bill,
Try pushing the output directly to a file using calls to the Utl_File supplied package. That would allow you unlimited spooling capacity.
If you really want to use DBMS_Output, you might try (but I don't know if it would work) to call DBMS_Output.Disable then DBMS_Output.Enable(1000000) every once in a while in a loop in your procedure. That would close the buffer, then open it with a new million character capacity (I think).
Jack
-----Original Message-----
Carle,
William T (Bill), NLCIO
Sent: Tuesday, March 27, 2001 3:09 PM
To: Multiple recipients of list ORACLE-L
Hi,
This is my first attempt at writing a PL/SQL procedure.
Everything works
fine, except I have a firly large table I am running
against. I am trying to
display my output with DBMS_OUTPUT.PUT_LINE. I have set the
buffer size to
1000000, apparently the maximum value, but it still isn't
enough to print
output for my entire table. Is there another way to display
data? Or is
there some way to increase the maximum?
Bill Carle
AT&T
Database Administrator
816-995-3922
wcarle_at_att.com
--
Please see the official ORACLE-L FAQ: http://www.orafaq.com
--
Author: Jack C. Applewhite
INET: japplewhite_at_inetprofit.com
Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists --------------------------------------------------------------------To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing). Received on Tue Mar 27 2001 - 16:21:13 CST
![]() |
![]() |