Which isolation level ensures that other transactions cannot read uncommitted changes made by the current transaction?
- Read Committed
- Read Uncommitted
- Repeatable Read
- Serializable
The "Read Uncommitted" isolation level allows a transaction to read data that has been modified but not yet committed by other transactions. It does not provide protection against dirty reads, non-repeatable reads, or phantom reads.
Loading...
Related Quiz
- Advanced features like sorting, filtering, and grouping can be achieved using ___________ capabilities of these controls.
- In LINQ, what is deferred execution, and why is it important?
- The Fill method of a DataAdapter is used to populate a ___________ with data.
- You need to make changes to the database schema while keeping the existing data intact. Which feature of Entity Framework Code-First should you use?
- What is the primary purpose of modifying data in datasets?