What do you mean by Read Uncommitted?
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.