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
This can also help to list procedure except the system procedures:
select * from sys.all_objects where type='p' and is_ms_shipped=0