Find text in SQL Code
Oskar Austegard
http://mo.notono.us
ALTER PROC __FindText @query varchar(100) AS SELECT DISTINCT name, type FROM sysobjects so INNER JOIN syscomments sc ON so.id = sc.id WHERE text LIKE '%' + @query + '%' ORDER BY name
12390 users tagging and storing useful source code snippets
Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world
ALTER PROC __FindText @query varchar(100) AS SELECT DISTINCT name, type FROM sysobjects so INNER JOIN syscomments sc ON so.id = sc.id WHERE text LIKE '%' + @query + '%' ORDER BY name