Skip to content

Latest commit

 

History

History
60 lines (48 loc) · 2.07 KB

File metadata and controls

60 lines (48 loc) · 2.07 KB
title COMMIT WORK (Transact-SQL)
description COMMIT WORK (Transact-SQL)
author markingmyname
ms.author maghan
ms.reviewer dfurman, randolphwest
ms.date 12/17/2025
ms.service sql
ms.subservice t-sql
ms.topic reference
ms.custom
ignite-2025
f1_keywords
COMMIT_WORK_TSQL
WORK_TSQL
WORK
COMMIT WORK
helpviewer_keywords
ending transactions [SQL Server]
transactions [SQL Server], ending
marking end of transactions [SQL Server]
COMMIT WORK statement
dev_langs
TSQL
monikerRange =azuresqldb-current || >=sql-server-2016 || >=sql-server-linux-2017 || =azuresqldb-mi-current || =fabric-sqldb

COMMIT WORK (Transact-SQL)

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

Marks the end of a transaction.

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

Syntax

COMMIT [ WORK ]
[ ; ]

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.

Permissions

Requires membership in the public role.

Related content