Create procedure sp_helpCol(@columnName varchar(50))asselect object_name(id) 'Table list where this column is used/exist' from syscolumns where name = @columnName
Login to post response