Skip to content
Articles

readpast

With(NoLock) vs With(ReadPast)
Sql Server thg 9 17, 2026 2 min read EN VI

With(NoLock) vs With(ReadPast)

WITH (NOLOCK) and WITH (READPAST) are SQL Server table hints that manage concurrency differently — NOLOCK reads uncommitted (dirty) data, while READPAST skips locked rows, avoiding dirty reads but potentially missing data. With(NoLock) v...

By Huy Vũ