SQL SERVER:更改服务代理存储过程

时间:2014-05-21 14:18:43

标签: sql sql-server service-broker

我无法更改服务代理存储过程,当我更新存储过程时,它不会显示任何错误并成功更新,但更改不会生效。

是否因为我需要在更改生效之前停止两个数据库上的服务代理队列?

注意:服务代理存储过程生成并读取xmls。

包括商店程序

ALTER PROCEDURE [dbo].[ServiceBroker_AtTarget_FromSLICJobEstimateDetailsNewLineAddedBySupplier]
    @XML XML(SLICMessageSchema)
AS
BEGIN
    -- extract data :
    DECLARE     
    @LogNo              INT,
    @QuoteReference         INT,
    @JobEstimatesDetailID       INT,
    @UserName           NVARCHAR(50),
    @Description            NVARCHAR(MAX),
    @UnitValue          DECIMAL(18,2),
    @Quantity           DECIMAL(18,2),
    @LineTotal          DECIMAL(18,2),
    @QuoteTotal         DECIMAL(18,2),
    @tsCreated          DATETIME

    SELECT      @QuoteReference = @XML.value('data(//FromSLIC/FromSLICJobEstimateDetailsNewLineAddedBySupplier/@QuoteReference)[1]', 'int'),
            @JobEstimatesDetailID = @XML.value('data(//FromSLIC/FromSLICJobEstimateDetailsNewLineAddedBySupplier/@JobEstimatesDetailID)[1]', 'int'),    
            @UserName = @XML.value('data(//FromSLIC/FromSLICJobEstimateDetailsNewLineAddedBySupplier/@UserName)[1]', 'nvarchar(50)'),
            @Description = @XML.value('data(//FromSLIC/FromSLICJobEstimateDetailsNewLineAddedBySupplier/@Description)[1]', 'nvarchar(max)'),
            @UnitValue = @XML.value('data(//FromSLIC/FromSLICJobEstimateDetailsNewLineAddedBySupplier/@UnitValue)[1]', 'decimal(18,2)'),
            @Quantity = @XML.value('data(//FromSLIC/FromSLICJobEstimateDetailsNewLineAddedBySupplier/@Quantity)[1]', 'decimal(18,2)'),      
            @tsCreated = @XML.value('data(//FromSLIC/FromSLICJobEstimateDetailsNewLineAddedBySupplier/@tsCreated)[1]', 'datetime')

    SET @LogNo = (SELECT mlq.logno FROM fsgmgtservices.dbo.maintlogquotes mlq WHERE mlq.quoteno = @QuoteReference)

    INSERT INTO fsgcentraldata.dbo.[tblSLICGeneratedEvents]
    (EventNameID, tsCreated, CreatedBy, IsAcknowledged, JobNumber, ContractorID)
    SELECT 9, @tsCreated, @UserName, 0, @LogNo, je.contractorid
    FROM [slic3.0].dbo.JobEstimates je WHERE je.legacyreference = CAST(@quotereference AS varchar(50))



SET @LineTotal = (@UnitValue * @Quantity) // IF I CHANGE IT TO ((@UnitValue * 2)) FOR EXMPL



    INSERT INTO fsgmgtservices.dbo.maintlogquotedetails
    (quoteno, details, quantity, rate, amount, [date], slicreference)
    SELECT @QuoteReference, @description, @quantity, @UnitValue, @LineTotal, @tscreated, @JobEstimatesDetailID

    SET @QuoteTotal = (SELECT SUM(mlqd.amount) FROM fsgmgtservices.dbo.maintlogquotedetails mlqd 
    WHERE mlqd.quoteno = @QuoteReference)

    UPDATE fsgmgtservices.dbo.maintlogquotes SET amount = @QuoteTotal WHERE quoteno = @QuoteReference   

    INSERT INTO [fsgmgtservices].[dbo].maintlognotes
    (logno, [date], [user], [note], transferredfromslic)
    SELECT @LogNo, @tsCreated, @UserName, 'Quote ' + CAST(@QuoteReference AS varchar(20)) + ', new lines added by supplier in SLIC By ' + @UserName , 0

END

1 个答案:

答案 0 :(得分:2)

更改激活的存储过程不会终止任何正在运行的实例。很可能你的旧代码仍在循环中运行,并且会继续运行,直到它退出循环或你杀了它。