sql >> Base de Datos >  >> RDS >> Oracle

Búsqueda de texto de blob de Oracle

Esto es bastante posible y fácil de hacer.

Simplemente use dbms_lob.instr junto con utl_raw.cast_to_raw

Entonces, en su caso, si t1 es un BLOB, la selección se vería así:

select *
  from table1
 where dbms_lob.instr (t1, -- the blob
                   utl_raw.cast_to_raw ('foo'), -- the search string cast to raw
                   1, -- where to start. i.e. offset
                   1 -- Which occurrance i.e. 1=first
                    ) > 0 -- location of occurrence. Here I don't care.  Just find any
;