How to get a particular string from a clob column?
I have data as below which is stored in clob column called product_details
product_details
CALCULATIO
Below code can be used to search a particular string in Oracle clob column
select * from RLOS_BINARY_BP where dbms_lob.instr(DED_ENQ_XML,'2003960067') > 0;
where RLOS_BINARY_BP is table name and DED_ENQ_XML is column name (with datatype as CLOB) of Oracle database.
RLOS_BINARY_BP
DED_ENQ_XML