﻿<?xml version='1.0' encoding='UTF-8'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"><channel><title>SQLServerCentral / Discuss Content Posted by Raj Vasant / Article Discussions / Article Discussions by Author  / how to customize SMO script for ALTER or CREATE stored procedure / Latest Posts</title><generator>InstantForum.NET v2.9.0</generator><description>SQLServerCentral</description><link>http://www.sqlservercentral.com/Forums/</link><webMaster>notifications@sqlservercentral.com</webMaster><lastBuildDate>Tue, 21 May 2013 01:37:03 GMT</lastBuildDate><ttl>20</ttl><item><title>how to customize SMO script for ALTER or CREATE stored procedure</title><link>http://www.sqlservercentral.com/Forums/Topic891156-227-1.aspx</link><description>When I use SQL Server Management Studio I can define a script for creating a stored procedureEx:USE [RM_BILLING]GO/****** Object:  StoredProcedure [dbo].[Insert_Affiliate_Info]    Script Date: 03/26/2010 18:03:31 ******/SET ANSI_NULLS ONGOSET QUOTED_IDENTIFIER ONGO-- ===============================================-- !!! Auto-Generated - Do Not Modify Directly !!!-- Created date...: 2010-03-25 @ 10.20.35-- Description....: Insert Affiliate_Info record-- !!!  !!! Use tool to regenerate !!! !!!-- ===============================================ALTER PROCEDURE [dbo].[Insert_Affiliate_Info](    @affID Int,    @affName VarChar(100))ASBEGIN    INSERT INTO Affiliate_Info    (        Aff_ID,        Aff_Name    )    VALUES    (        @affID,        @affName    )END</description><pubDate>Fri, 26 Mar 2010 16:04:45 GMT</pubDate><dc:creator>djmarcus</dc:creator></item></channel></rss>