SQL Server Database Administrator Question:

Download Job Interview Questions and Answers PDF

What is lock escalation?

SQL Server DB Administrator Interview Question
SQL Server DB Administrator Interview Question

Answer:

Lock escalation is the process of converting a lot of low level locks (like row locks, page locks) into higher level locks (like table locks). Every lock is a memory structure too many locks would mean, more memory being occupied by locks. To prevent this from happening, SQL Server escalates the many fine-grain locks to fewer coarse-grain locks. Lock escalation threshold was definable in SQL Server 6.5, but from SQL Server 7.0 onwards it's dynamically managed by SQL Server.

Download SQL Server DB Administrator Interview Questions And Answers PDF

Previous QuestionNext Question
What is the difference in Login Security Modes between v6.5 and 7.0?What is the maximum size of a row?