You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
FOR t IN (SELECT table_name, column_name FROM all_tab_cols WHERE owner = username AND data_type = 'VARCHAR2') LOOP
EXECUTE IMMEDIATE 'SELECT "' || t.column_name || '" FROM "' || t.table_name || '" WHERE "' || t.column_name || '" LIKE :1' BULK COLLECT INTO m USING pattern;