From 74488038518d8ad1dce46429619b4baa545f8047 Mon Sep 17 00:00:00 2001 From: Sean Date: Wed, 11 Jul 2018 12:36:47 -0400 Subject: [PATCH 1/3] Corrected typo will is -> will be --- .../language-elements/rollback-transaction-transact-sql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/t-sql/language-elements/rollback-transaction-transact-sql.md b/docs/t-sql/language-elements/rollback-transaction-transact-sql.md index 2a446ebfe37..3e13fdf77b4 100644 --- a/docs/t-sql/language-elements/rollback-transaction-transact-sql.md +++ b/docs/t-sql/language-elements/rollback-transaction-transact-sql.md @@ -68,7 +68,7 @@ ROLLBACK { TRAN | TRANSACTION } ROLLBACK TRANSACTION cannot reference a *savepoint_name* in distributed transactions started either explicitly with BEGIN DISTRIBUTED TRANSACTION or escalated from a local transaction. - A transaction cannot be rolled back after a COMMIT TRANSACTION statement is executed, except when the COMMIT TRANSACTION is associated with a nested transaction that is contained within the transaction being rolled back. In this instance, the nested transaction will is rolled back, even if you have issued a COMMIT TRANSACTION for it. + A transaction cannot be rolled back after a COMMIT TRANSACTION statement is executed, except when the COMMIT TRANSACTION is associated with a nested transaction that is contained within the transaction being rolled back. In this instance, the nested transaction will be rolled back, even if you have issued a COMMIT TRANSACTION for it. Within a transaction, duplicate savepoint names are allowed, but a ROLLBACK TRANSACTION using the duplicate savepoint name rolls back only to the most recent SAVE TRANSACTION using that savepoint name. From 8f8c0b27478e98deddc98dbfde695f6d38e3d1fe Mon Sep 17 00:00:00 2001 From: Kristine Toliver Date: Wed, 11 Jul 2018 13:49:51 -0700 Subject: [PATCH 2/3] fix metadata for reviewer notification --- .../language-elements/rollback-transaction-transact-sql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/t-sql/language-elements/rollback-transaction-transact-sql.md b/docs/t-sql/language-elements/rollback-transaction-transact-sql.md index 3e13fdf77b4..8f1fe8d4192 100644 --- a/docs/t-sql/language-elements/rollback-transaction-transact-sql.md +++ b/docs/t-sql/language-elements/rollback-transaction-transact-sql.md @@ -1,4 +1,4 @@ ---- +--- title: "ROLLBACK TRANSACTION (Transact-SQL) | Microsoft Docs" ms.custom: "" ms.date: "09/12/2017" From 25345b1fc844f4d8f2db17a3a6d18dddc0243f19 Mon Sep 17 00:00:00 2001 From: Sean Date: Wed, 11 Jul 2018 17:27:36 -0400 Subject: [PATCH 3/3] Corrected typo used present tense instead of future tense --- .../language-elements/rollback-transaction-transact-sql.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/t-sql/language-elements/rollback-transaction-transact-sql.md b/docs/t-sql/language-elements/rollback-transaction-transact-sql.md index 8f1fe8d4192..39ecfc8b3c8 100644 --- a/docs/t-sql/language-elements/rollback-transaction-transact-sql.md +++ b/docs/t-sql/language-elements/rollback-transaction-transact-sql.md @@ -68,7 +68,7 @@ ROLLBACK { TRAN | TRANSACTION } ROLLBACK TRANSACTION cannot reference a *savepoint_name* in distributed transactions started either explicitly with BEGIN DISTRIBUTED TRANSACTION or escalated from a local transaction. - A transaction cannot be rolled back after a COMMIT TRANSACTION statement is executed, except when the COMMIT TRANSACTION is associated with a nested transaction that is contained within the transaction being rolled back. In this instance, the nested transaction will be rolled back, even if you have issued a COMMIT TRANSACTION for it. + A transaction cannot be rolled back after a COMMIT TRANSACTION statement is executed, except when the COMMIT TRANSACTION is associated with a nested transaction that is contained within the transaction being rolled back. In this instance, the nested transaction is rolled back, even if you have issued a COMMIT TRANSACTION for it. Within a transaction, duplicate savepoint names are allowed, but a ROLLBACK TRANSACTION using the duplicate savepoint name rolls back only to the most recent SAVE TRANSACTION using that savepoint name.