Skip to content

Commit 17e9f40

Browse files
authored
Merge pull request #18049 from David-Engel/patch-2
Link to managing concurrent data access
2 parents fc2bb28 + c1854c9 commit 17e9f40

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

docs/connect/jdbc/understanding-concurrency-control.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: "Understanding concurrency control"
33
description: "Learn about concurrency control and how to preserve database integrity when developing a multi-user application with the JDBC Driver for SQL Server."
44
ms.custom: ""
5-
ms.date: "08/12/2019"
5+
ms.date: "12/08/2020"
66
ms.prod: sql
77
ms.prod_service: connectivity
88
ms.reviewer: ""
@@ -18,7 +18,7 @@ ms.author: v-daenge
1818
Concurrency control refers to the various techniques that are used to preserve the integrity of the database when multiple users are updating rows at the same time. Incorrect concurrency can lead to problems such as dirty reads, phantom reads, and non-repeatable reads. The [!INCLUDE[jdbcNoVersion](../../includes/jdbcnoversion_md.md)] provides interfaces to all the concurrency techniques used by [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] to resolve these issues.
1919

2020
> [!NOTE]
21-
> For more information about [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] concurrency, see "Managing Concurrent Data Access" in [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] Books Online.
21+
> For more information about [!INCLUDE[ssNoVersion](../../includes/ssnoversion-md.md)] concurrency, see ["Managing Concurrent Data Access"](../../relational-databases/sql-server-transaction-locking-and-row-versioning-guide.md#managing-concurrent-data-access).
2222
2323
## Remarks
2424
The JDBC driver supports the following concurrency types:

0 commit comments

Comments
 (0)