I\'m trying to get a list of stored procedures in t-sql. I am using the line:
exec sys.sp_stored_procedures;
I would like to filter the result
Select items from the sysobjects table and use a where clause type = 'P' for stored procedures and filter on name.
type = 'P'
name