I have a table with a clob column. Searching based on the clob column content needs to be performed. However
select * from aTable where aClobColumn = \'value\';>
how about
select * from table_name where to_char(clob_column) ="test_string"