You can query the system tables:
SELECT [name]
FROM [dbo].[sysobjects] obj
INNER JOIN [dbo].[syscomments] cmt
ON obj.[id] = cmt.[id]
where cmt.[text] like '%my text%'
My name is John Roland, I'm the creator of the .netTiers project. On this blog you'll find tome tips about various Microsoft .NET technology: ASP.NET, Windows Forms, WPF, or the Composite UI Application Block.
0 comments:
Post a Comment