Skip to content

Commit 1944d02

Browse files
committed
deployment error solved
1 parent 83334b2 commit 1944d02

1 file changed

Lines changed: 2 additions & 4 deletions

File tree

docs/sql/SQL-Advance/sql-transactions-concurrency.markdown renamed to docs/sql/SQL-Advance/sql-transactions-concurrency.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
11
---
2-
id: sql-transactions-concurrency
32
title: SQL Transactions & Concurrency
43
sidebar_label: Transactions & Concurrency
54
sidebar_position: 5
@@ -9,7 +8,6 @@ keywords: [sql, transactions, concurrency, ACID, isolation levels, locking, sql
98
---
109

1110

12-
1311
## 📙 Welcome to SQL Transactions & Concurrency!
1412

1513
Hey there, SQL beginner! Transactions and concurrency are all about keeping your database safe and consistent when multiple operations or users are involved. Think of transactions as a way to group changes (like bank transfers) to ensure they’re done correctly, and concurrency as the rules for handling multiple users accessing the database at the same time. We’ll use a simple `students` table (with columns like `id`, `name`, `age`, `marks`, and `city`) to explain everything with clear examples. Let’s dive in step by step!
@@ -231,7 +229,7 @@ UNLOCK TABLES;
231229
```
232230
</TabItem>
233231

234-
<TabItem value="Table-Level Lock Output" label="Output">
232+
<TabItem value="Table-Level Lock Output" label="Table-Level Lock Output">
235233
Table `students` locked, all rows updated, table unlocked.
236234
</TabItem>
237235
</Tabs>
@@ -249,4 +247,4 @@ You’re now a pro at SQL transactions and concurrency! You’ve mastered:
249247
- **Isolation Levels**: READ UNCOMMITTED, READ COMMITTED, REPEATABLE READ, SERIALIZABLE for managing concurrency.
250248
- **Locking**: Row-level vs. table-level locks to prevent conflicts.
251249

252-
Practice these concepts with the `students` table in a multi-user environment. Follow the “What NOT to Do” tips to keep your database safe and performant!
250+
Practice these concepts with the `students` table in a multi-user environment. Follow the “What NOT to Do” tips to keep your database safe and performant!

0 commit comments

Comments
 (0)