Adam K Dean

Find column from all tables

Published on 18 February 2014 at 10:26 by Adam

A very useful SQL snippet today, courtesy of Danny Dawes and SQLAuthority.

The following query will list all tables that reference a specific column name:

SELECT t.name AS table_name,
SCHEMA_NAME(schema_id) AS schema_name,
c.name AS column_name
FROM sys.tables AS t
INNER JOIN sys.columns c ON t.OBJECT_ID = c.OBJECT_ID
WHERE c.name LIKE '%EmployeeID%'
ORDER BY schema_name, table_name;

Just change %EmployeeID% to the column name you're looking for.



This post was first published on 18 February 2014 at 10:26. It was filed under archive with tags sql.