Oracle Transactional Business Intelligence

Welcome to the Oracle Analytics Community: Please complete your User Profile and upload your Profile Picture

OTBI: Replace Line Feed characters from CLOB column

Question
3
Views
0
Comments

CLOB column contains line breaks in html. We tried following function which works only if CLOB column character length is less than 4000.
REPLACE(REPLACE(REPLACE(CAST("Performance Goals"."Success Criteria" AS VARCHAR2(4000)) ,'<br/>',''),'<p>',''),'</p>','')

Does OTBI support TRANSALTE or EVALUATE? if not, do we have any other means by which we can replace line breaks from CLOB column exceeding 4000 chars?