SELECT DISTINCT so.name FROM dbo.sysobjects so inner join .dbo.syscomments sc on so.id=sc.id WHERE so.xtype='P' AND sc.text like '%SearchString%'
Much faster!
This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)