How can I get a list of all the tables that have a specific column name?
If you're trying to query an Oracle database, you might want to use
select owner, table_name from all_tab_columns where column_name = 'ColName';