I\'m doing some recon work and having to dig through a few hundred SQL Server database tables to find columns.
Is there a way to easily search for columns in the da
select c.name as ColumnName, o.name as TableName from sys.columns c inner join sys.objects o on c.object_id = o.object_id where c.name = 'MyColumnName'