Script all stored procedures in Management Studio 2005

Solution 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.

Solution 2:

  1. Go to Microsoft SQL Server Management Studio
  2. Select the database
  3. Right click on selected database
  4. Select 'Tasks'
  5. Select 'Generate Scripts'
  6. Select 'Next'
  7. Select / tick 'Select specific database objects'
  8. Tick 'Stored Procedures'
  9. Select 'Next'
  10. Select the option where do you want to save the file

Solution 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