How can we help you today? How can we help you today?

Code to find all Stored Procedures in SQL Server

Hi,
Here is a simple code to find all ACTIVE Stored Procedures in SQL Server

SELECT DISTINCT so.name
FROM syscomments sc
INNER JOIN sysobjects so ON sc.id=so.id
paulxavierx
0

Add comment

Please sign in to leave a comment.