Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: SQL_PLUS buffer overflow
s Lehaire wrote:
> Hi !
> I've got this message (in french because I'm french) in SQL_PLUS when there
> is to much DBMS_OUTPUT.PUT_LINE()
> So can I increase the buffer of sql_plus? I've to see a debug of my
> procedure.
>
> ERREUR à la ligne 1 :
> ORA-20000: ORU-10027: buffer overflow, limit of 2000 bytes
> ORA-06512: à "SYS.DBMS_OUTPUT", ligne 34
> ORA-06512: à "SYS.DBMS_OUTPUT", ligne 118
> ORA-06512: à "SYS.DBMS_OUTPUT", ligne 81
> ORA-06512: à "MPDEV.PR_MY_PROCEDURE", ligne 20
> ORA-06512: à ligne 1
>
> Thx for response
Try:
DBMS_OUTPUT.DISABLE;
DBMS_OUTPUT.ENABLE(1000000);
Daniel Morgan
Received on Fri Jun 07 2002 - 10:51:49 CDT
![]() |
![]() |