What do you mean by Read Uncommitted?

What do you mean by Read Uncommitted?

View Answers

November 19, 2010 at 12:35 PM

Hi,

This situation occurs when transactions read data that has not been committed.In this isolation level, dirty reads are allowed. One transaction may see uncommitted changes made by some other transaction. A transaction using the Read Uncommitted isolation level can not lock other transactions out of the row of data it is reading.

Thanks.









Related Tutorials/Questions & Answers:
Advertisements