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: DBMS_OUTPUT... buffer full !!

Re: DBMS_OUTPUT... buffer full !!

From: srivenu <srivenu_at_hotmail.com>
Date: 5 Aug 2002 21:25:49 -0700
Message-ID: <1a68177.0208052025.3b51854b@posting.google.com>

  1. As Norman Dunbar has suggested use DBMS_OUTPUT.Enable(1000000) if that size too is not sufficient,
  2. Put each DBMS_OUTPUT line in its own block and handle the exception

ex
stmt1;
stmt2;
....

BEGIN
 DBMS_OUTPUT.PUT_LINE('............');
EXCEPTION
 WHEN ..... THEN
  NULL;
END;
....

... Received on Mon Aug 05 2002 - 23:25:49 CDT

Original text of this message

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