Jul 13, 2004 #1 adonet MIS May 4, 2004 312 US Can someone show me how to print all store procedures' syntax in SQL server?
Jul 13, 2004 #2 wsmall73 Programmer May 23, 2002 261 US I think there are a couple of ways to accomplish... here's one... select * from SysObjects where xtype='P' Upvote 0 Downvote
I think there are a couple of ways to accomplish... here's one... select * from SysObjects where xtype='P'
Jul 13, 2004 Thread starter #3 adonet MIS May 4, 2004 312 US This only list all SP name not syntax for each SP. Upvote 0 Downvote
Jul 13, 2004 #4 DotNetConnect Programmer Jul 1, 2004 13 US sp_helptext Jon Gallant jon[at]dotnetconnect.com http://www.dotnetconnect.com Upvote 0 Downvote