can anyone please help me to understand the concept of locking in sql server? What i understand is, it prevents others from using the locked data. What each type of locks do? what is more about it with examples?
|
|
I think you want to learn the locking concepts..that is why u need examples too !!! http://www.sqlteam.com/article/introduction-to-locking-in-sql-server you can find all the types of locks according with examples. its a great article. Please take a look at it.. Regards |
|||||||
|
|
Are you designing an app and looking to maintain ACIDity? If that is the case, I would suggest you start with the ISOLATION_LEVEL setting for transactions/sessions. It's a better practice to specify the ISOLATION_LEVEL you need rather than issuing explicit locking behavior using query hints. SET TRANSACTION ISOLATION LEVEL (Transact-SQL) Isolation Levels in the Database Engine If you have a blocking problem you need to diagnose (too much waiting taking place because the same or adjacent data is accessed), then these would be a good place to start... |
|||
|
|
|
if u want more details related to Sql server locking u can refer you can find all the types of locks . Please take a look at it.. http://selectinsql.blogspot.in/2012/11/introduction-to-locking-in-sql-server.html |
|||
|
|