Skip to Main Content

SQL & PL/SQL

Announcement

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!

How to cast CLOB to RAW?

3018678Mar 30 2016 — edited Apr 1 2016

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;



Thanks

This post has been answered by Paulzip on Mar 30 2016
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Apr 29 2016
Added on Mar 30 2016
3 comments
11,342 views