I want to understand how locking works in SQL Server (2005/2008) during select, update, insert and delete operations. Specifically, I want to know if Indexes have anything to do with locking. I mean, having a primary key helping in locking a row rather than entire table etc., Can someone suggest some articles?

Thanks, Gopal

link|improve this question

77% accept rate
feedback

1 Answer

up vote 1 down vote accepted

For SQL Server 2008, you can start with Locking and Row Versioning, and Customizing Locking for an Index.

You can control locking granularity using CREATE INDEX..., ALTER INDEX..., CREATE TABLE..., and ALTER TABLE.... See, for example, the syntax for CREATE INDEX, and search that page for the options ALLOW_ROW_LOCKS and ALLOW_PAGE_LOCKS.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.