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, 3107🔥, 0💬
Popular Posts:
How To Change the Password for Your Own User Account in MySQL? If you want to change the password of...
What To Do If the StartDB.bat Failed to Start the XE Instance in Oracle? If StartDB.bat failed to st...
What Is a Parameter File in Oracle? A parameter file is a file that contains a list of initializatio...
How To Get Help Information from the Server in MySQL? While you are at the "mysql>" prompt, y...
How To Format Time Zone in +/-hh:mm Format in SQL Server Transact-SQL? From the previous tutorial, y...