A phantom read occurs when a transaction rereads data it has previously read and finds modifications or deletions caused by a committed transaction. True False 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. True False TRUE ANSWER : ? YOUR ANSWER : ?
When two transactions are being processed against the database at the same time they are termed concurrent transactions. True False TRUE ANSWER : ? YOUR ANSWER : ?
When one transaction reads a changed record that has not been committed to the database a filthy read occurs. False True TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following occurs when one transaction reads a changed record that has not been committed to the database? Consistent read Phantom read Dirty read Nonrepeatable read TRUE ANSWER : ? YOUR ANSWER : ?
Dirty read, nonrepeatable, and phantom reads are not possible in this instance. Read uncommitted Serializable Repeatable read Read committed TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following occurs when a transaction rereads data it has previously read and finds modification or deletions caused by a committed transaction? Consistent read Dirty read Nonrepeatable read Phantom read 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? Dirty read Phantom read Nonrepeatable read Consistent read TRUE ANSWER : ? YOUR ANSWER : ?
What is the overall responsibility of the DBA? Both the first and third answers above are correct. Facilitate the development and use of the database Create and populate tables Development, operation, and maintenance of the database and its applications TRUE ANSWER : ? YOUR ANSWER : ?