Collections:
What Is a Dead Lock in MySQL
What Is a Dead Lock in MySQL?
✍: FYIcenter.com
A dead lock is phenomenon happens between two transactions with each of them holding a lock that blocks the other transaction as shown in the following diagram:
(transaction 1) (transaction 2)
update row X to create lock 1
update row Y to create lock 2
update row X
(blocked by lock 1)
update row Y
(blocked by lock 2)
(dead lock created)
⇒ Experiment with Dead Locks in MySQL
⇐ Error: Lock Wait Timeout Exceeded in MySQL
2017-04-28, 2709🔥, 0💬
Popular Posts:
How To Find Out What Privileges a User Currently Has in Oracle? Privileges granted to users are list...
How to set the current database in SQL Server? Once you are connected to the SQL Server, you should ...
How To Escape Special Characters in SQL statements in MySQL? There are a number of special character...
Can Date and Time Values Be Converted into Integers in SQL Server Transact-SQL? Can date and time va...
How To List All Stored Procedures in the Current Database in SQL Server Transact-SQL? If you want to...