Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: ORU-10288 error, line length overflow.
Nope,
This will not work. Line length is limited to 255 and couldnt be increased.
Buffer size is something different.
Consider splitting your output into several dbms_output.put_line's
Vadim Gorbounov
Oracle DBA
-----Original Message-----
Sent: Thursday, March 01, 2001 11:32 AM
To: Multiple recipients of list ORACLE-L
Increase your buffer output. Like this:
set serverout on size <up to 1000000>
or
dbms_output.enable(<up to 1000000>);
> -----Mensaje original-----
> De: Manasa Rao [SMTP:rao_manasa_at_hotmail.com]
> Enviado el: jueves 1 de marzo de 2001 16:36
> Para: Multiple recipients of list ORACLE-L
> Asunto: ORU-10288 error, line length overflow.
>
> All,
> I am getting this following error, when I execute a procedure. And I made
>
> sure my linesize is 2000, and all variables are of good size. But still
> don't understand the source of this error. Appreciate any help.
> Thanks
> Radhika.
>
>
> ORA-20000: ORU-10028: line length overflow, limit of 255 bytes per line
> ORA-06512: at "SYS.DBMS_OUTPUT", line 99
> ORA-06512: at "SYS.DBMS_OUTPUT", line 65
> ORA-06512: at "SECADMIN.ICPASSECSELECT", line 27
> ORA-06512: at line 1
>
>
> _________________________________________________________________
> Get your FREE download of MSN Explorer at http://explorer.msn.com
>
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.com
> --
> Author: Manasa Rao
> INET: rao_manasa_at_hotmail.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).
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Trassens, Christian INET: CTrassens_at_uni2.es 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). -- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Vadim Gorbounov INET: vgorbounov_at_simplyengineering.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 Thu Mar 01 2001 - 12:44:27 CST
![]() |
![]() |