Question : How to create "System Stored Procedures" in SQL Server 2005 / 2008 ?

Hi,

Can you please provide me steps to create "System Stored Procedures" in SQL Server 2005 / 2008 ? Any nice article in SQL Server 2005 / 2008 is also much appreciated.

Thanks

Answer : How to create "System Stored Procedures" in SQL Server 2005 / 2008 ?

I believe the following code by itself may work:

There's a code example of creating a stored procedure by running a SQL script. You might be able to piece together what you need specifically with this.

http://www.sqldbatips.com/displaycode.asp?ID=26

The entire article related to scripting backups for SQL server can be found here:
http://www.sqldbatips.com/showarticle.asp?ID=27
1:
2:
3:
4:
use master
GO
 
CREATE PROCEDURE [dbo].[mystoredproc]
Open in New Window Select All
Random Solutions  
 
programming4us programming4us