List all Stored Procs in Database


/ Published in: SQL
Save to your folder(s)



Copy this code and paste it in your HTML
  1. SELECT name FROM sysobjects WHERE xtype='P' AND category <> 2 ORDER BY name

URL: http://blogs.msdn.com/danielfe/archive/2005/07/10/437312.aspx

Report this snippet


Comments

RSS Icon Subscribe to comments

You need to login to post a comment.