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: [EMAIL PROTECTED]

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: [EMAIL PROTECTED] (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).

Reply via email to