SQL Server supports all four ANSI standards isolation levels. They are;
- Read Uncommitted (the lowest level, high concurrency, less blocking, more currency related issues)
- Read Committed (default)
- Repeatable Read
- Serializable (the highest level, less concurrency, higher blocking, no concurrency related issues)
- Read Committed Snapshot
- Snapshot isolation level
No comments:
Post a Comment