What query can return the names of all the stored procedures in a SQL Server database
If the query could exclude system stored procedures, that would be even more helpful.
What query can return the names of all the stored procedures in a SQL Server database
If the query could exclude system stored procedures, that would be even more helpful.
You can try this query to get stored procedures and functions:
Just the names:
Select All Stored Procedures and Views
If you are using SQL Server 2005 the following will work: