Jul 13, 2004 #1 adonet MIS Joined May 4, 2004 Messages 312 Location US Can someone show me how to print all store procedures' syntax in SQL server?
Jul 13, 2004 #2 wsmall73 Programmer Joined May 23, 2002 Messages 261 Location 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 Joined May 4, 2004 Messages 312 Location US This only list all SP name not syntax for each SP. Upvote 0 Downvote
Jul 13, 2004 #4 DotNetConnect Programmer Joined Jul 1, 2004 Messages 13 Location US sp_helptext Jon Gallant jon[at]dotnetconnect.com http://www.dotnetconnect.com Upvote 0 Downvote