How can I get a list of all the tables that have a specific column name?
Pretty simple on a per database level
Use DatabaseName Select * From INFORMATION_SCHEMA.COLUMNS Where column_name = 'ColName'
2.1m questions
2.1m answers
60 comments
57.0k users