Activity overview
Latest activity by paulxavierx
Code to find all Stored Procedures in SQL Server
Hi,
Here is a simple code to find all ACTIVE Stored Procedures in SQL ServerSELECT DISTINCT so.name
FROM syscomments sc
INNER JOIN sysobjects so ON sc.id=so.id