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

Home -> Community -> Mailing Lists -> Oracle-L -> ORA-06505 PL/SQL: variable requires more than 32767 bytes of contiguous memory

ORA-06505 PL/SQL: variable requires more than 32767 bytes of contiguous memory

From: Mudhalvan, Moovarkku <mmudhalvan_at_gcrejapan.co.jp>
Date: Mon, 19 Jan 2004 17:34:27 -0800
Message-ID: <F001.005DD675.20040119173427@fatcity.com>


Dear DBAs,         

        Good Morning. Using PL/SQL procedure I am trying to spool out Japanese Characters with VARCHR2(3600) size and I am getting this error.

Here is my code. For your information it is Japanese Characters

Spool c:\test.log

Declare

        cursor c1 is select contact_details from test;

begin         

DBMS_OUTPUT.ENABLE(1000000); For x in c1 loop

DBMS_OUTPUT.PUT_LINE('"'||x.contact_details||'"');

End loop;

End;

/
Spool off

Could you please suggest for other ideas.... I tried with UTL_FILE also.. Since my OS is English I am getting some Junk Characters

Thank You

Mudhalvan M.M
--

Please see the official ORACLE-L FAQ: http://www.orafaq.net
--

Author: Mudhalvan, Moovarkku
  INET: mmudhalvan_at_gcrejapan.co.jp

Fat City Network Services    -- 858-538-5051 http://www.fatcity.com
San Diego, California        -- Mailing list and web hosting services
---------------------------------------------------------------------
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 Mon Jan 19 2004 - 19:34:27 CST

Original text of this message

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