Network Security Internet Technology Development Database Servers Mobile Phone Android Software Apple Software Computer Software News IT Information

In addition to Weibo, there is also WeChat

Please pay attention

WeChat public account

Shulou

What are the isolation levels of the database

2025-03-29 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >

Share

Shulou(Shulou.com)06/01 Report--

Editor to share with you what the database isolation levels are, I believe most people do not know much about it, so share this article for your reference, I hope you can learn a lot after reading this article, let's learn about it!

Database isolation levels include: 1, read uncommitted; 2, read submitted; 3, repeatable read; 4, serialization. Low-level isolation levels generally support higher concurrent processing and have lower system overhead.

I. the concept of transaction

A series of operations in a transaction are either successful or none at all.

(video tutorial recommendation: mysql video tutorial)

There are two ways to end a transaction. When all the steps in the transaction are executed successfully, the transaction commits. If one of the steps fails, a rollback operation occurs, undoing the action that has been performed by the transaction.

Second, the characteristics of the transaction ACID

Transactions have four characteristics: Atomicity, Consistency, Isolation and Durability, referred to as ACID for short.

III. The problem of concurrent execution of multiple transactions

(1) dirty read: transaction 1 updated the record, but did not commit, transaction 2 read the updated row, and then transaction T1 rolled back, now T2 read is invalid.

(2) non-repeatable reading: when transaction 1 reads the record, transaction 2 updates the record and commits it. When transaction 1 reads it again, you can see the modified record of transaction 2.

(3) Phantom reading: when transaction 1 reads records, transaction 2 increases records and commits them. When transaction 1 reads records again, you can see the new records of transaction 2.

IV. Four isolation levels of transactions

The SQL standard defines four types of isolation levels, including specific rules that define which changes inside and outside the transaction are visible and which are not. Low-level isolation levels generally support higher concurrent processing and have lower system overhead.

The above is all the contents of the database isolation level, thank you for reading! I believe we all have a certain understanding, hope to share the content to help you, if you want to learn more knowledge, welcome to follow the industry information channel!

Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.

Views: 0

*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.

Share To

Database

Wechat

© 2024 shulou.com SLNews company. All rights reserved.

12
Report