2022-09-28 08:05:54
Topic starter
which is the most easiest way to update BLOB value from developer tool?
Using SQLDeveloper
Another easy way to do it is to use the oracle replace function on the blob field.
E.g. if you want to change "ValueA" to "ValueB" in the blob:
update MY_TABLE set BLOB_FIELD = replace(BLOB_FIELD, 'ValueA', 'ValueB') where [criteria];