Is it possible to search every field of every table for a particular value in Oracle?
There are hundreds of tables with thousands of rows in some tables so I know th
SELECT * from all_objects WHERE object_name like '%your_string%';