AIncorrect Answer

Dirty read is where one transaction writes an attribute and then another transaction reads the changed attribute without the first transaction committing. This is not true in this case.

close

BIncorrect Answer

Dirty read, also known as the Uncommitted Dependency, is where one transaction writes an attribute and then another transaction reads the changed attribute without the first transaction committing. This is not true in this case.

close

CIncorrect Answer

The incomsistent analysis scenario depicts how certain interleaving of transactions can result in the wrong modifications to the database, as the interleaving is not serialisable. This is not true in this case.

close

DCorrect Answer

In lost update, a modification is lost due to another transaction overwriting the modification.

close

EIncorrect Answer

Deadlock can only occur in a system with concurrency control. This is not the case here as the question clearly states that the system under consideration has no concurrency control.

close

A B C D E TELL ME NEXT INDEX
 
 

In an DBMS without concurrency control, what consistency problem does the following transaction schedule depict?

Time Transaction A Transaction B
t1 read R  
t2   read R
t3 write R  
t4   write R
  1. Dirty Read
  2. Uncommitted Dependency
  3. Inconsistent Analysis
  4. Lost Update
  5. Deadlock