Reputation: 1083
In Enterprise Manager you could script all SPs in a database through the right click menu, is there a way to do it in Management Studio?
Upvotes: 49
Views: 65279
Reputation: 131
Upvotes: 13
Reputation: 9291
Sure. All you need to do is to is click on the Stored Procedure in the Object Explorer and then highlight all the stored procedures in the Summary pane. Then simply right click and choose the scripting option that you prefer.
Good luck
Upvotes: 7
Reputation: 10176
If you right click on the database name, the bottom option is "Generate Scripts" which will then launch a wizard to generate scripts for the whole DB or specific objects inside.
Upvotes: 4
Reputation: 5917
Right click the database, choose Tasks, choose Generate Scripts.., click Next, Next again, choose Stored procedures, Next, Select All, Finish.
Presto!
Upvotes: 6
Reputation: 25366
You can right click on the database and to go Tasks -> Generate Scripts...
This will allow you to script all or selected objects (schema, stored procedures, tables, users and views) with specific options.
Upvotes: 88