SQL Server locks a row of data, prevents read, modify, and delete

Source: Internet
Author: User

In SQL transactions, it is sometimes necessary to lock a row, and then release the line when things are done.


Use with (Rowlock,updlock) to lock the current row. Prohibit read, modify, and delete


A transaction

ALTER PROCEDURE [dbo]. [Asuo]

As
BEGIN


BEGIN Tran
SELECT TOP 1 * FROM dbo. Jyq_hlt_order with (rowlock,updlock) WHERE orderid=321878
UPDATE dbo. Jyq_hlt_order SET orderbillingstatus=13 WHERE orderid=321878
SELECT TOP 1 * FROM dbo. Jyq_hlt_order WHERE orderid=321878
WAITFOR DELAY ' 00:00:10 '
COMMIT TRAN
END


b Business


ALTER PROCEDURE [dbo]. [Bsuo]

As
BEGIN
BEGIN Tran
UPDATE dbo. Jyq_hlt_order SET orderbillingstatus=14 WHERE orderid=321878
SELECT TOP 1 * FROM dbo. Jyq_hlt_order WHERE orderid=321878
COMMIT TRAN
END



The B transaction waits for a transaction to COMMIT TRAN before it executes.

With (Rowlock) any function

With (Rowlock,updlock) must be combined to take effect

SQL Server locks a row of data, prevents read, modify, and delete

Related Article

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.