问题
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?
回答1:
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.
回答2:
- Go to Microsoft SQL Server Management Studio
- Select the database
- Right click on selected database
- Select 'Tasks'
- Select 'Generate Scripts'
- Select 'Next'
- Select / tick 'Select specific database objects'
- Tick 'Stored Procedures'
- Select 'Next'
- Select the option where do you want to save the file
回答3:
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
回答4:
Right click the database, choose Tasks, choose Generate Scripts.., click Next, Next again, choose Stored procedures, Next, Select All, Finish.
Presto!
回答5:
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.
来源:https://stackoverflow.com/questions/175703/script-all-stored-procedures-in-management-studio-2005