|
|
|
Forum Newbie
      
Group: General Forum Members
Last Login: Wednesday, December 03, 2008 5:14 AM
Points: 2,
Visits: 10
|
|
| how to copy existing stored procedure before updating it in sql server express management studio screen
|
|
|
|
|
SSC Journeyman
      
Group: General Forum Members
Last Login: Wednesday, March 27, 2013 6:58 AM
Points: 81,
Visits: 161
|
|
I am not sure if management studio is limited in SQL Express, but usually you can just Right-Click on the stored proc name and select "Script Stored Procedure As" then select "Create To" finally select an appropriate option and save the query in a good place.
If by chance the management studio for SQL Express does not have this option, you can run this command and then save the query results somewhere.
exec sp_helptext 'ProcedureName'
|
|
|
|