Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

We have client app that is running some SQL on a SQL Server 2005 such as the following:

BEGIN TRAN;
INSERT INTO myTable (myColumns ...) VALUES (myValues ...);
INSERT INTO myTable (myColumns ...) VALUES (myValues ...);
INSERT INTO myTable (myColumns ...) VALUES (myValues ...);
COMMIT TRAN;

It is sent by one long string command.

If one of the inserts fail, or any part of the command fails, does SQL Server roll back the transaction? If it does not rollback, do I have to send a second command to roll it back?

I can give specifics about the api and language I'm using, but I would think SQL Server should respond the same for any language.

share|improve this question

3 Answers

up vote 53 down vote accepted

You can put set xact_abort on before your transaction to make sure sql rolls back automatically in case of error.

share|improve this answer
1  
Will this work on MS SQL 2K and higher? This seems the most simple solution. – jonathanpeppers Nov 17 '09 at 15:49
1  
It appears in the docs for 2000, 2005, and 2008 so I assume yes. We are using it in 2008. – DyingCactus Nov 17 '09 at 15:54
Is there an option to rollback on a network timeout or network errors in general? Or does this option handle all in one? – jonathanpeppers Nov 17 '09 at 16:04
1  
Do I need to turn it off or is it per session? – Marc Sep 3 '12 at 15:52
1  
For this particular case it works, but XACT_ABORT is not a cure for all disease. The following will fail SET XACT_ABORT ON EXEC sp_executesql N'some eroneus statement' SELECT 'Shouldn''t see this' – jaraics Oct 5 '12 at 7:44
show 1 more comment

You are correct in that the entire transaction will be rolled back. You should issue the command to roll it back.

You can wrap this in a TRY CATCH block as follows

BEGIN TRY
    BEGIN TRANSACTION

        INSERT INTO myTable (myColumns ...) VALUES (myValues ...);
        INSERT INTO myTable (myColumns ...) VALUES (myValues ...);
        INSERT INTO myTable (myColumns ...) VALUES (myValues ...);

    COMMIT TRAN -- Transaction Success!
END TRY
BEGIN CATCH
    IF @@TRANCOUNT > 0
        ROLLBACK TRAN --RollBack in case of Error

    -- you can Raise ERROR with RAISEERROR() Statement including the details of the exception
    RAISERROR(ERROR_MESSAGE(), ERROR_SEVERITY(), 1)
END CATCH
share|improve this answer
I like DyingCactus's solution better, his is 1 line of code to change. If yours if for some reason better (or more reliable) let me know. – jonathanpeppers Nov 17 '09 at 15:52
1  
The try catch gives you the ability to capture (and possibly fix) the error and raise a custom error message if required. – Raj More Nov 17 '09 at 15:55
Since we don't really care to handle the error specifically within SQL, I think we're going with DyingCactus's solution. – jonathanpeppers Nov 17 '09 at 16:07
2  
"Capture and log" more frequently than "capture and fix", I'd think. – quillbreaker Jul 19 '12 at 23:54

If one of the inserts fail, or any part of the command fails, does SQL server roll back the transaction?

No, it does not.

If it does not rollback, do I have to send a second command to roll it back?

Sure, you should issue ROLLBACK instead of COMMIT.

If you want to decide whether to commit or rollback the transaction, you should remove the COMMIT sentence out of the statement, check the results of the inserts and then issue either COMMIT or ROLLBACK depending on the results of the check.

share|improve this answer
So if I get an error, say "Primary key conflict" I need to send a second call to rollback? I guess that makes sense. What happens if there is a network-related error such as the connection is severed during a very long running SQL statement? – jonathanpeppers Nov 17 '09 at 15:47
2  
When a connection times out, the underlying network protocol (e. g. Named Pipes or TCP) breaks the connection. When a connection is broken, SQL Server stops all currently running commands and rollbacks the transaction. – Quassnoi Nov 17 '09 at 16:04
1  
So DyingCactus's solution looks like it fixes my issue, thanks for the help. – jonathanpeppers Nov 17 '09 at 16:06
If you need to abort on any error, then yes, this is the best option. – Quassnoi Nov 17 '09 at 16:11

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.