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?

link|improve this question

71% accept rate
feedback

4 Answers

up vote 15 down vote accepted

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.

link|improve this answer
1  
There tend to be about 20 steps for me to generate these scripts (which I'm doing for version control purposes). Is there an easier way--perhaps a way to have the wizard remember all the past settings? – Kimball Robinson Jul 15 '10 at 22:42
feedback

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

link|improve this answer
feedback

Right click the database, choose Tasks, choose Generate Scripts.., click Next, Next again, choose Stored procedures, Next, Select All, Finish.

Presto!

link|improve this answer
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.