something along the lines of the following should work
use yourdb
select t.name as TableName, c.name as ColumnName from sys.tables t
inner join sys.columns c on t.object_id = c.object_id
where c.name = 'Yourcolumnname'
-----------------------------------------------------------------------------------------------------------
"Ya can't make an omelette without breaking just a few eggs" 😉