List Stored Procedure In Sql Server
A database object known as a "stored procedure" houses pre-written queries (a group of T-SQL Statements).
In other words, a stored procedure is a section of code that is created to run whenever it is invoked.
You can create a procedure with or without parameters.
list of all Stored Procedure Modified in last N Days
list of all Stored Procedure
list of all Stored Procedure Modified in last N Days
Return The Procedure’s Definition
The INFORMATION_SCHEMA.ROUTINES view also has a ROUTINE_DEFINITION column, so you can easily return each stored procedure’s definition if required.
List all stored procedures in SQL Server