For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!
Hi All,
How to cast CLOB to RAW? It gives ORA-06512 value error
declare V_RAW raw(20000); V_HTMLÂ CLOB; begin for V_HTML:= V_HTML ....; V_RAW := UTL_RAW.CAST_TO_RAW(V_HTML); end;
declare
V_RAW raw(20000);
V_HTMLÂ CLOB;
begin
for
V_HTML:= V_HTML ....;
V_RAW := UTL_RAW.CAST_TO_RAW(V_HTML);
end;
Thanks