Hi,
I need to search inside BLOB segment for specific string.
I have tried two options , but non of them return row.
select ...
from ....
where dbms_lob.instr(my_blob, utl_raw.cast_to_raw('/PROD-NP-2009Version/Shared/Connections/Database'))>0
select ...
from ....
where dbms_lob.instr(my_blob, utl_raw.cast_to_raw('/PROD-NP-2009Version/Shared/Connections/Database'),1,1)>0
I am not sure that the string is exists , but would like to get your advise which option is should use future searches
Thanks