Last active
August 29, 2015 14:07
-
-
Save thoroc/fff9d129e60f1c9d98b0 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
-- for T-SQL / SQL server | |
-- see http://blog.sqlauthority.com/2008/08/06/sql-server-query-to-find-column-from-all-tables-of-database/ | |
USE AdventureWorks | |
GO | |
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; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment