in

SQL Server Blogs

Voices from the UK SQL Server Community

Browse by Tags

  • Search a value in character column of all tables

    Sometimes, you may need to find a value in the characters columns (char, varchar, etc) in all the tables This is one of the methods to do it declare @sql varchar ( max ), @search varchar ( 100 ) set @sql = '' set @search = 'your search string' select @sql = @sql + 'select '''...
    Posted to Madhivanan (Weblog) by Madhivanan on Mon, Dec 14 2009
Page 1 of 1 (1 items)
Powered by Community Server (Commercial Edition), by Telligent Systems