vote up 3 vote down star

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;
flag

75% accept rate

1 Answer

vote up 1 vote down check

answered in question.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.