Skip to content

Commit 2105220

Browse files
author
gitName
committed
User Feedback 423261 - Fix typo per UUF feedback
1 parent 174bfde commit 2105220

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

learn-pr/wwl-data-ai/explore-query-performance-optimization/includes/7-describe-blocking-locking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ It's important to understand the concept of a transaction. Autocommit is the def
1717
INSERT INTO DemoTable (A) VALUES (1);
1818
```
1919

20-
In order to allow developers to have more granular control over their application code, SQL Server also allows you to explicitly control your transactions. The following query would take a lock on a row in the *DemoTable* table what wouldn't be released until a subsequent command to commit the transaction was added.
20+
In order to allow developers to have more granular control over their application code, SQL Server also allows you to explicitly control your transactions. The following query would take a lock on a row in the *DemoTable* table that wouldn't be released until a subsequent command to commit the transaction was added.
2121

2222
```SQL
2323
BEGIN TRANSACTION

0 commit comments

Comments
 (0)