SQL Server Locks Question:

Do you know the isolation level that SQL Server support?

MS SQL Server Locks Interview Question
MS SQL Server Locks Interview Question

Answer:

Isolation levels supported by SQL Server:

Read uncommitted: Lowest level of isolation
Read committed: Default
Repeatable read
Serializable: Highest level of isolation. All transactions are isolated from each other completely.


Previous QuestionNext Question
What is Pessimistic concurrency?Explain isolation levels that SQL server supports?