Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations wOOdy-Soft on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by arturm

  1. arturm

    How to find a text inside SQL Server code

    Create the procedure (SQL Server 2012): [code SQL]CREATE PROCEDURE sp_FindText @p_text varchar(100) AS SELECT DISTINCT name, type FROM sys.sysobjects so WITH (NOLOCK) INNER JOIN sys.syscomments sc WITH (NOLOCK) ON so.id = sc.id WHERE text LIKE '%' + @p_text + '%' ORDER BY name[/code]...

Part and Inventory Search

Back
Top