Solutions to SQL Server table deadlock

Source: Internet
Author: User
I wrote a stored procedure the other day and used transactions in the stored procedure. Later I commented out some code for debugging and found that a table was locked, I forgot to comment out the code for creating a transaction. Solution to table lock in this article.

I wrote a stored procedure the other day and used transactions in the stored procedure. Later I commented out some code for debugging and found that a table was locked, I forgot to comment out the code for creating a transaction. Solution to table lock in this article.

In fact, not only will the table be locked as described above, but there are also many scenarios that will cause a deadlock in the Table. Unlocking is actually very simple. The following example is used to explain:

1. First create a test table:
The Code is as follows:
Create table Test
(
Tid int identity (1, 1)
)

2. Execute the following SQL statement to lock the table:
The Code is as follows:
SELECT * FROM Test WITH (TABLOCKX)

3. Use the following statement to check which tables in the current database have deadlocks:
The Code is as follows:
SELECT request_session_id spid, OBJECT_NAME (resource_associated_entity_id) tableName
FROM sys. dm_tran_locks
WHERE resource_type = 'object'

4. The execution result of the preceding statement is as follows:


Spid: the ID of the locked process.
TableName: name of the table in which a deadlock occurs.

5. You only need to use the kill keyword to kill the locked process ID to unlock the table:

KILL 52

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.