Which of the following occurs when one transaction reads a changed record that has not been committed to the database? Dirty read Consistent read Nonrepeatable read Phantom read TRUE ANSWER : ? YOUR ANSWER : ?
A transaction is a series of actions to be taken on the database so that either all of them are performed successfully or none of them are performed at all. True False TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following occurs when a transaction rereads data and finds new rows that were inserted by a command transaction since the prior read? Consistent read Nonrepeatable read Phantom read Dirty read TRUE ANSWER : ? YOUR ANSWER : ?
The transaction log contains a copy of every database record (or page) after it has changed. These records are called before images. False True TRUE ANSWER : ? YOUR ANSWER : ?
Locks placed by command are called ________ . implicit locks explicit locks exclusive locks shared locks TRUE ANSWER : ? YOUR ANSWER : ?
Dirty read, nonrepeatable, and phantom reads are not possible in this instance. Serializable Read uncommitted Repeatable read Read committed TRUE ANSWER : ? YOUR ANSWER : ?
Locks placed by the DBMS are called ________ . explicit locks exclusive locks implicit locks shared locks TRUE ANSWER : ? YOUR ANSWER : ?
The size of the lock is referred to as the lock granularity. False True TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following allows dirty reads, nonrepeatable reads and phantom reads to occur? Repeatable read Read committed Serializable Read uncommitted TRUE ANSWER : ? YOUR ANSWER : ?
In this instance, dirty reads are disallowed, while nonrepeatable reads and phantom reads are allowed. Read uncommitted Serializable Repeatable read Read committed TRUE ANSWER : ? YOUR ANSWER : ?