SQL Server Locks Question:
Do you know the isolation level that SQL Server support?
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.
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 Question | Next Question |
What is Pessimistic concurrency? | Explain isolation levels that SQL server supports? |