To get a list of all storedprocedures in a Database you can use te following snippet.
Sample SQL
select * from Testdatabase.information_schema.routines where routine_type = 'PROCEDURE' ORDER BY ROUTINE_NAME ASC
All the Code Snippets and Samples you need
To get a list of all storedprocedures in a Database you can use te following snippet.
select * from Testdatabase.information_schema.routines where routine_type = 'PROCEDURE' ORDER BY ROUTINE_NAME ASC
You must be logged in to post a comment.
RT @CodeSnippetsNET: List all storedprocs in #mssql #Database
http://t.co/zGC2mSKlND #sql #coding