How to remove Emoticons from oracle clob column
Hello Experts,
I have a CLOB column contains Emoticons along with xml data and want to remove the Emoticons only.
from varchar2 column I can successfully remove them using following script but it's not working for CLOB (with more than 6k chars).
UPDATE table SET SUBJECT = REGEXP_REPLACE(SUBJECT, UNISTR('[\FFFF-\DBFF\DFFF]'));
/Suvesh