Odi's astoundingly incomplete notes
New entries | CodeCast CLOB to BLOB in Oracle
select TO_BLOB(UTL_RAW.CAST_TO_RAW(myclob)) from mytableThis will provide a CLOB column as a BLOB. The character set / encoding that is used here is to be determined. Probably DB default.
Add comment