How to write in a NCLOB with DBMS_LOB.write ?

From: Jose FERNANDES <jfernandes_at_netforce.fr>
Date: 2000/07/21
Message-ID: <8l9soi$h51$1_at_s2.feed.news.oleane.net>#1/1


Hi,

When I compile (under oracle schema manager) the following function, I get this error message "line 8: PLS-00560 character set mismatch"

(result in VARCHAR2 character set ANY_CS, pos in INTEGER) return CLOB is

amt INTEGER := 2000;
dest_lob CLOB ;

begin
  select text into dest_lob from test4;
  dbms_lob.write(dest_lob,amt,pos,'e');
end;

(the table "test4" is composed of an NCLOB which name is text)
Received on Fri Jul 21 2000 - 00:00:00 CEST

Original text of this message