sqlhints.com
How to find all tables that have specified column name in Sql Server?
We can use a script like below to find all the tables in the database that have column with specified name in it: SELECT SCHEMA_NAME(schema_id) + '.' + t.name AS 'Table Name' FR…