Skip to content

Latest commit

 

History

History
56 lines (44 loc) · 2.32 KB

rollback-work-transact-sql.md

File metadata and controls

56 lines (44 loc) · 2.32 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
ROLLBACK WORK (Transact-SQL)
ROLLBACK WORK (Transact-SQL)
markingmyname
maghan
06/10/2016
sql
t-sql
reference
ROLLBACK WORK
ROLLBACK_WORK_TSQL
transaction rollbacks [SQL Server]
erasing data modifications [SQL Server]
ROLLBACK WORK statement
roll back transactions [SQL Server]
rolling back transactions, ROLLBACK WORK
savepoints [SQL Server]
TSQL

ROLLBACK WORK (Transact-SQL)

[!INCLUDE SQL Server Azure SQL Database Azure SQL Managed Instance]

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

:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions

Syntax

ROLLBACK [ WORK ]  
[ ; ]  

[!INCLUDEsql-server-tsql-previous-offline-documentation]

Remarks

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.

Permissions

ROLLBACK WORK permissions default to any valid user.

See Also

BEGIN DISTRIBUTED TRANSACTION (Transact-SQL)
BEGIN TRANSACTION (Transact-SQL)
COMMIT TRANSACTION (Transact-SQL)
COMMIT WORK (Transact-SQL)
ROLLBACK TRANSACTION (Transact-SQL)
SAVE TRANSACTION (Transact-SQL)