Last week I wrote about how to search for tables and columns in SQLServer2005, since they removed the Objects Search. After I posted it, I realized that it didn't link the columns to the tables, which doesn't make it very helpful. Thanks to my DBA buddy James Rogers for pointing me in the right direction, here's a more helpful query. You can leave either COLName or TBLName blank by commenting out the set command. DECLARE @COLName NVARCHAR(50), @TBLName NVARCHAR(50) SET @COLName = 'bu_id%'SET @TBLName...