Expand Minimize
5 out of 7 rated this helpful - Rate this topic

ROLLBACK WORK (Transact-SQL)

Rolls back a user-specified transaction to the beginning of the transaction.

Topic link iconTransact-SQL Syntax Conventions


ROLLBACK [ WORK ]
[ ; ]

This statement functions identically to ROLLBACK TRANSACTION except that ROLLBACK TRANSACTION accepts a user-defined transaction name. With or without specifying the optional WORK keyword, this ROLLBACK syntax is ISO-compatible.

When nesting transactions, ROLLBACK WORK always rolls back to the outermost BEGIN TRANSACTION statement and decrements the @@TRANCOUNT system function to 0.

ROLLBACK WORK permissions default to any valid user.

Did you find this helpful?
(1500 characters remaining)

Community Additions

ADD
© 2013 Microsoft. All rights reserved.