SQL and PL/SQL Question: Download SQL and PL/SQL PDF

What is SQL Deadlock?

Tweet Share WhatsApp

Answer:

Deadlock is a unique situation in a multi user system that causes two or more users to wait indefinitely for a locked resource. First user needs a resource locked by the second user and the second user needs a resource locked by the first user. To avoid dead locks, avoid using exclusive table lock and if using, use it in the same sequence and use Commit frequently to release locks.

Download SQL and PL/SQL PDF Read All 45 SQL and PL/SQL Questions
Previous QuestionNext Question
What is SQL Integrity?What is Mutating SQL Table?