Code to find all Stored Procedures in SQL Server
paulxavierx
Posts: 2
Hi,
Here is a simple code to find all ACTIVE Stored Procedures in SQL Server
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