Transactions problem

  • Hi,

    I have a requirement like,every month we will have a release, we collect the code from the TFS and give it to the DBA ,he use to execute the sql scripts in prod and if any error occurs he will post us the error and we will fix it from backend.But now we got a requirement,all the DML Script should be given to DBA and it should execute at once if any error occurs in between all the dml statements should rollback as of now done and after rectifying the error the same process we have to follow.

    Am trying in this way and the dml format will be in this way,

    begin try

    begin tran operat

    Print 'inserts into table emp : Begin '

    BEGIN TRANSACTION

    IF EXISTS (SELECT * FROM sys.tables WHERE object_id = OBJECT_ID(N'[emp]'))

    BEGIN

    insert into commondb.dbo.emp (ename,deptno,emploc) values ('ttt',13,'gurg')

    END

    COMMIT

    GO

    Print 'inserts into table emp : End '

    end try

    begin catch

    rollback tran operat

    end catch

    error facing ::

    Msg 102, Level 15, State 1, Line 13

    Incorrect syntax near 'COMMIT'.

    Msg 102, Level 15, State 1, Line 3

    Incorrect syntax near 'try'.

    Msg 102, Level 15, State 1, Line 7

    Incorrect syntax near 'catch'.

    Can anyone please help me on the same becauz its very urgent to be fixed.

  • Remove the batch separator.

    “Write the query the simplest way. If through testing it becomes clear that the performance is inadequate, consider alternative query forms.” - Gail Shaw

    For fast, accurate and documented assistance in answering your questions, please read this article.
    Understanding and using APPLY, (I) and (II) Paul White
    Hidden RBAR: Triangular Joins / The "Numbers" or "Tally" Table: What it is and how it replaces a loop Jeff Moden

Viewing 2 posts - 1 through 1 (of 1 total)

You must be logged in to reply to this topic. Login to reply