vote up 4 vote down star
1

If I create a Stored Procedure in SQL and call EXEC spStoredProcedure within the BEGIN/END TRANSACTION, does this other stored procedure also fall into the transaction?

I didn't know if it worked like try/catches in C#...

flag

8 Answers

vote up 7 vote down check

Yes, everything that you do between the Begin Transaction and Commit (or Rollback) is part of the transaction.

link|flag
This isn't completely true. Actually, operations on table variables are outside the transaction scope; a rollback does not affect any changes that have been made in your table variable. – Chris Wuestefeld Sep 3 at 15:10
Well, I meant everything you do to the database - I guess I assumed it was obvious that variables are not affected by transactions - although I suppose it's a bit less intuitive with table variables than scalar variables. – Blorgbeard Sep 3 at 22:20
vote up 4 vote down

I believe in MS SQL Server the stored procedure execution would happen within the transaction, but be very careful with this. If you have nested transactions (ie, transaction outside of the stored procedure and a different transaction inside the stored procedure), a rollback will affect ALL of the transactions, not just the nearest enclosing transaction.

link|flag
vote up 2 vote down

Yes, all nested stored procedure calls are included in the scope of the transaction. If you are using SQL Server 2005 or greater, you can use Try...Catch as well. Here is more detail on that.

link|flag
vote up 0 vote down

Sounds great, thanks a bunch. I ended up doing something like this (because I'm on 05)

BEGIN TRY BEGIN TRANSACTION

DO SOMETHING

COMMIT END TRY BEGIN CATCH IF @@TRANCOUNT > 0 ROLLBACK

-- Raise an error with the details of the exception DECLARE @ErrMsg nvarchar(4000), @ErrSeverity int SELECT @ErrMsg = ERROR_MESSAGE(), @ErrSeverity = ERROR_SEVERITY()

RAISERROR(@ErrMsg, @ErrSeverity, 1) END CATCH

link|flag
vote up 3 vote down

As Chris mentioned, you should be careful about rolling the transaction back.

Specifically this:

IF @@TRANCOUNT > 0 ROLLBACK

is not always what you want. You could do something like this

IF(@@TRANCOUNT = 1) ROLLBACK TRAN
ELSE IF(@@TRANCOUNT > 1) COMMIT TRAN
RETURN @error

This way, the calling proc can inspect the return value from the stored procedure and determine if it wants to commit anyways or continue to bubble up the error.

The reason is that 'COMMIT' will just decrement your transaction counter. Once it decrements the transaction counter to zero, then an actual commit will occur.

link|flag
vote up 1 vote down

@Chris, I did not know that.

When googling for more info, I came across this - you can set 'savepoints', which can be rolled back to without rolling back the whole transaction.

Could be useful in this situation.

link|flag
vote up 0 vote down

As Chris and James mentioned, you need to be careful when dealing with nested transactions. There is a set a very good articles on the subject of transactions written by Don Peterson on SQL Server Central , I would recommend having a read of those:

Here there are:

link|flag
vote up 0 vote down

You need to keep @@trancount equal on entry and exit to avoid error 2xx (forget what exactoy) One exception: trigger rollback does not cause this error.

Use a @starttrancount local var and only BEGIN/COMMIT/ROLLBACK if zero.

We use this as a template and it allows us to plug procs together without worrying about interference. Encapsulation for SQL guys...

link|flag

Your Answer

Get an OpenID
or

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