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 he
USE DBNAME select ROUTINE_NAME from information_schema.routines where routine_type = 'PROCEDURE' GO
This will work on mssql.