you can find 'em like this (then you can use a similar script to update/delete):Create Table #t (col sysname, tbl sysname)Declare @col sysnameDeclare @tbl sysnameDeclare c CursorRead_OnlyFOR select c.name, t.name FROM sys.columns c JOIN sys.tables t On c.object_id = t.object_idOpen cFetch Next From c Into @col, @tblWhile @@Fetch_Status = 0BEGIN Insert #t Exec ('SELECT ''' + @col + ''',''' + @tbl + ''' FROM [' + @tbl + '] WHERE [' + @col + '] LIKE ''%badsite.com%''') Fetch Next From c Into @col, @tblENDCLOSE cDeallocate cSELECT * FROM #tDROP TABLE #t