How can I get a list of all the tables that have a specific column name?
Solution
Pretty simple on a per database level
Use DatabaseName
Select * From INFORMATION_SCHEMA.COLUMNS Where column_name = 'ColName'
The post Find All Tables Containing Column With Specified Name appeared first on Solved.