SELECT COLUMN_NAME AS 'ColumnName'
,TABLE_NAME AS 'TableName'
FROM INFORMATION_SCHEMA.COLUMNS
WHERE COLUMN_NAME LIKE '%MyName%'
ORDER BY TableName,ColumnName;
Refer: http://stackoverflow.com/questions/4849652/find-all-tables-containing-column-with-specified-name
Refer: http://stackoverflow.com/questions/4849652/find-all-tables-containing-column-with-specified-name