sql script get all stored procedures from database

Solutions on MaxInterview for sql script get all stored procedures from database by the best coders in the world

showing results for - "sql script get all stored procedures from database"
Felipe
03 May 2020
1SELECT 
2  SCHEMA_NAME(schema_id) AS [Schema],
3  name
4FROM sys.objects
5WHERE type = 'P';