About with (nolock) in SQL and withnolock in SQL

Source: Internet
Author: User

About with (nolock) in SQL and withnolock in SQL

What does NOLOCK in SQL Server mean?

It is generally used in such statements: select * from t with (NOLOCK)
Nolock is a non-lock query that can read the data locked by the transaction, also known as dirty read.
Note:
So that the query of the current session is not blocked by the transactions of other sessions.
But in this way, the "uncommitted after modification" data of other transactions is read.
That is, allow "read uncommitted"


The following is an example:

Open a window in sqlserver:

Write the following statement:

Begin tran update STUDENT set sname = '000000' waitfor delay '0: 0: 10' update STUDENT set sname = '000000' commit tran

Open another window in sqlserver:

Write the following statement:

Select * from student with (nolock)
Execute the first window first, and execute the second window within 10 seconds (preferably 2 seconds later, not too fast, because the execution of the first window takes some time)

The query result is sname = '000000'

If you change the SQL statement in the second window:

Select * from student
Then, the second window does not return immediately. It will wait until the execution of the first window is complete and then query and return the result. Sname = '000000'



Copyright Disclaimer: This article is an original article by the blogger and cannot be reproduced without the permission of the blogger.

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.