/ Published in: SQL
Search all the database Tables for column names that contain a string
Expand |
Embed | Plain Text
SELECT owner, table_name, column_name FROM all_tab_columns WHERE column_name LIKE UPPER('%&string%') ORDER BY owner, table_name, column_name; -- Search all columns
You need to login to post a comment.
