Imran Akram's blog

Let's talk about life, technicalities, career opportunities, current affairs and a lot more!

How to get the name and definition of all Stored Procedures in a Database?

Today I wanted to get the script of all the Stored procedures in a database. I used this query to do so. Pretty much self explanatory is this, isn’t it? Use [myDatabaseName] SELECT ROUTINE_NAME, ROUTINE_DEFINITION FROM INFORMATION_SCHEMA.ROUTINES WHERE ROUTINE_TYPE=’PROCEDURE’

  • Share/Bookmark