Skip to content

Latest commit

 

History

History
55 lines (46 loc) · 2.26 KB

File metadata and controls

55 lines (46 loc) · 2.26 KB
description COMMIT WORK (Transact-SQL)
title COMMIT WORK (Transact-SQL)
ms.custom
ms.date 06/10/2016
ms.prod sql
ms.prod_service database-engine, sql-database
ms.reviewer
ms.technology t-sql
ms.topic reference
f1_keywords
COMMIT_WORK_TSQL
WORK_TSQL
WORK
COMMIT WORK
dev_langs
TSQL
helpviewer_keywords
ending transactions [SQL Server]
transactions [SQL Server], ending
marking end of transactions [SQL Server]
COMMIT WORK statement
ms.assetid 4de76f33-399e-4912-a617-6eb6c560a058
author markingmyname
ms.author maghan

COMMIT WORK (Transact-SQL)

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

Marks the end of a transaction.

Topic link icon Transact-SQL Syntax Conventions

Syntax

COMMIT [ WORK ]  
[ ; ]  

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

Remarks

This statement functions identically to COMMIT TRANSACTION, except COMMIT TRANSACTION accepts a user-defined transaction name. This COMMIT syntax, with or without specifying the optional keyword WORK, is compatible with SQL-92.

See Also

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