In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-01-16 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Database >
Share
Shulou(Shulou.com)06/01 Report--
What is a transaction?
A transaction is a whole made up of one or more sql statements, if all statements are executed successfully, then the changes will all take effect, if one sql statement will sell + 1, the next one will be + 1, if the second fails, then the sales volume will revoke the + 1 operation of the first sql statement, and only in this transaction will all statements be successfully executed before the changes will be added to the database. The characteristics of the transaction:
Atomicity
Atomicity means that all the operations of the transaction are either successful or all failed rollback, so if the operation of the transaction is successful, the knife database must be fully applied. If the operation fails, it will not have any impact on the database.
Consistency
Consistency means that a transaction must change the database from one consistent state to another, that is, a transaction must be in a consistent state before execution and after execution.
For example, assuming that the former sum of user An and user B is 5000, then no matter how the money transferred between An and B adds up to 5000, this is the consistency of the transaction.
Isolation
Isolation means that when multiple users access the database concurrently, such as manipulating the same table, the database opens transactions for each user and will not be disturbed by other operations
Concurrent transactions should be isolated from each other
Persistence
Persistence means that once a transaction is committed, the change to the data in the database is permanent. The storage engines that support transactions in Mysql are most used in mysql: INNODB, BDB, MYISAM, MEMORY, in which INNODB and BDB support transactions, and others do not support transactions.
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.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.