Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Display CLOB content on AL32UTF8
"Frank van Bortel"
> Looks like you're bitten by implicit conversion (and you forgot
> to do your homework :))
thanks
I've resolved this by calling
dbms_lob.loadCLOBfromfile
instead and supplied "nls_charset_id('AL32UTF8')" to the parameter
"BFILE_CSID"
SQL> desc dbms_lob.loadCLOBfromfile
Parameter Type Mode Default?
------------ ------ ------ --------
DEST_LOB CLOB IN OUT
SRC_BFILE BFILE IN
AMOUNT NUMBER IN
DEST_OFFSET NUMBER IN OUT
SRC_OFFSET NUMBER IN OUT
BFILE_CSID NUMBER IN
LANG_CONTEXT NUMBER IN OUT
WARNING NUMBER OUT
Received on Fri Dec 29 2006 - 22:43:47 CST