Tuesday 14 May 2013

Query that returns list of all Stored Procedures in an MS SQL database


select * from information_schema.routines
where routine_type = 'PROCEDURE'

No comments:

Post a Comment

Please comment here