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

Home -> Community -> Mailing Lists -> Oracle-L -> Re: PL/SQL length overflow prob

Re: PL/SQL length overflow prob

From: Bunyamin K. Karadeniz <bunyamink_at_havelsan.com.tr>
Date: Wed, 08 Aug 2001 07:28:56 -0700
Message-ID: <F001.003641C1.20010808064617@fatcity.com>

TRY
DBMS_OUTPUT.enable(100000); // a number greater

if does not solve the problem;
Then split the variable into peaces like... DBMS_OUTPUT.put_line(variable,1,1000);
DBMS_OUTPUT.put_line(variable,1001,2000);

If this does not again solve ;
Then
Wtrite it to a file with UTL_FILE

GOOD LUCK
Bunyamin

> HI,
>
> I am encountering the following problem in my pl/sql programme.Please let
me
> know how to counter ths prob:
>
> DECLARE
>
> *
>
> ERROR at line 1:
>
> 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 line 30
>
>
> Thanks in advance,
> Uma
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.com
> --
> Author: Rao, UmaSankara S (CAP)
> INET: UmaSankara.Rao_at_Gecis.GE.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: Bunyamin K. Karadeniz
  INET: bunyamink_at_havelsan.com.tr

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 Wed Aug 08 2001 - 09:28:56 CDT

Original text of this message

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