SQL Server ROWLOCK over a SELECT if not exists INSERT transaction

孤人 提交于 2019-11-30 15:02:45

An explanation...

  • ROWLOCK/PAGELOCK is granularity
  • XLOCK is mode

Granularity and isolation level and mode are orthogonal.

  • Granularity = what is locked = row, page, table (PAGLOCK, ROWLOCK, TABLOCK)

  • Isolation Level = lock duration, concurrency (HOLDLOCK, READCOMMITTED, REPEATABLEREAD, SERIALIZABLE)

  • Mode = sharing/exclusivity (UPDLOCK, XLOCK)

  • "combined" eg NOLOCK, TABLOCKX

XLOCK would have locked the row exclusively as you want. ROWLOCK/PAGELOCK wouldn't have.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!