I\'m trying to find a specific string in an entire Oracle database.
I\'ve followed the example in another topic on here (Search All Fields In All Tables For A Specific
Change it to
EXECUTE IMMEDIATE 'SELECT COUNT(*) FROM ' || t.owner || '.' || t.table_name || ' WHERE '||t.column_name||' like :1' INTO match_count USING '%ALERT%';