• Assuming this post belongs to SQL server 2005, you can use the below query to return all SP in the database

    SELECT * FROM INFORMATION_SCHEMA.ROUTINES WHERE ROUTINE_TYPE = 'PROCEDURE'

    Abhijit - http://abhijitmore.wordpress.com