SQL Server

Application of Triggers and Understanding the Transaction Procedures in Database Part – 8

Application of Triggers and Understanding the Transaction Procedures in Database Part – 8

What is Deadlock?

The deadlock is a state where more than one (1) transaction blocks the distinct items, as well as every single transaction pauses for a block on the additional item to get free. Deadlocks are very much risky for the reason that they decline the concurrency as well as the obtainability of the database in addition to the database items.

For an illustration, consider the following image:-




In the above mentioned image the transaction – Transaction 1 has already locked the EMIDetails table / relation besides this it desires to lock the LoanDetails table / relation too. The other transaction – Transaction 2 has also locked the LoanDetails table / relation for its own execution and now desiring to lock the EMIDetails table / relation too. As a consequence it occurs to be a deadlock situation, because both the transactions are getting delayed for the other transaction to free the table / relation. As neither of the locks will be free, this will be a deadlock situation.

How to Identify the Occurring Deadlocks?

For identifying the deadlock conditions, the SQL Server scans for sessions which are getting delayed for the lock appeal. The SQL Server, for the period of the first scan, put a mark on every delayed session. As soon as the SQL Server scans the sessions for the next time, a recursive deadlock exploration initiates. When any spherical sequence of lock appeals is obtained, the SQL Server at that moment abandons the minimum exclusive transaction as well as puts a mark on that particular transaction as the deadlock prey. By the smart usage of a deadlock scan for sessions, the SQL Server finishes a deadlock by mechanically choosing the worker who can breakdown the deadlock by way of the deadlock prey. Additionally, afterwards of the continuing back the deadlock victim’s transaction, the SQL Server informs the worker’s system over an error message number ‘1205’.

For detecting the deadlock situation, an individual can use the sys . dm_exec system view to get a view of the information about every single transaction which is begin performing inside the SQL Server. The view can be castoff to discover the transaction which is triggering the deadlock situation. An individual can request the system view by means of the subsequent command:-

SELECT * FROM SYS . DM_EXEC_REQUESTS

The result set will display the list of every transaction which is getting executed at present on the SQL Server.

How to Set the Deadlock Significance?

The SQL Server offers the SET DEADLOCK_PRIORITY command to modify the deadlock priority settings. Fixing the DEADLOCK_PRIORITY with the value of LOW for a session makes that specific session to be perfect for selected as the deadlock prey. The DEADLOCK_PRIORITY choice regulates in what manner the specific session responds in a deadlock situation. An individual can use the following code to set the DEADLOCK_PRIORITY choice:-

SET DEADLOCK_PRIORITY { LOW | NORMAL | @ My_DeadLock_Variable }

Here,

· LOW – It is castoff to stipulate that the present session is the ideal deadlock prey.

· NORMAL – It is castoff to stipulate that the present session proceeds to the default deadlock management technique.

· @ My_DeadLock_Variable – It is a character mutable with a fixed length of three (3) characters intended for string of low priority (LOW) in addition it is a mutable with a fixed length of six (6) characters intended for string of normal priority (NORMAL). It stipulates the deadlock management technique too.

The intermittent discovery tool of the SQL Server decreases the tension of deadlock discovery for the reason that deadlocks disturb merely a lesser number of transactions.

How to Alter the Lock Timeout?

Whenever a transaction tries to lock an item that is at present seized by means of some additional transaction the SQL Server notifies the first transaction about the present obtainability position of the item. In this case when the item is locked, the first transaction gets blocked out, and waits for that item to get freed. When there is a deadlock situation, the SQL Server dismisses one of the contributing transactions and when the deadlock situation is not happening, the demanding transaction is blocked out unless the additional transaction frees the lock on the item. By default, the timeout period is not been imposed by the SQL Server.

The SET LOCK_TIMEOUT command can be castoff to fix the maximum possible time for which a command will wait for a blocked item. Afterward the LOCK_TIMEOUT is fixed, once a command has already paused long enough than the time mentioned in the LOCK_TIMEOUT setting, then the SQL Server spontaneously stops the delaying transaction. An individual can use the following code to set timeout in case of deadlock situation:-

SET LOCK_TIMEOUT [ My_Timeout ]

Here,

· My_Timeout – It is expressing the delay time for which the SQL Server will delay before it gives a lock up error for a blocked transaction, the time is stated in milliseconds only. An individual can stipulate the time with a value of 1 to apply the default timeout.

How to Dodge the Deadlocks by means of Update Lock?

Whenever two (2) simultaneous transactions attains shared lock (S) mode on an item in addition then try to alter the information simultaneously too, one of the transaction tries to change the shared lock (S) to an exclusive lock (X). In this situation, the change from a shared lock (S) to an exclusive lock (X) should wait. This is for the reason that the exclusive lock (X) for one transaction is not companionable with the shared lock (S) of the added transaction. Consequently, a lock delay happens.

The second transaction alters the information as well as tries to get an exclusive lock (X). For these types of conditions, once both the transition are changing from shared lock (S) to exclusive lock (X), a deadlock happens, since both transactions are delaying for the added transaction to free its shared lock (S). Thus, update lock (U) are castoff to dodge this possible deadlock difficulty. The SQL Server permits single transaction to gain an update lock (U) on an item at single point of a time. The update lock (U) is changed to an exclusive lock (X) when a transaction alters the item, or else the lock is changed to shared lock (S).

This will be the last part of the “Application of Triggers and Understanding the Transaction Procedures in Database” series; I hope the readers have acquired some valuable knowledge about the triggers and transaction along with the locking systems in the SQL Server.

Thanks.