Which of the following occurs when one transaction reads a changed record that has not been committed to the database? Nonrepeatable read Phantom read Dirty read Consistent read 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 : ?
Dirty read, nonrepeatable, and phantom reads are not possible in this instance. Serializable Repeatable read Read committed Read uncommitted 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. False True TRUE ANSWER : ? YOUR ANSWER : ?
Two transactions that run concurrently and generate results that are consistent with the results that would have occurred if they had run separately are referred to as serializable transactions. True False TRUE ANSWER : ? YOUR ANSWER : ?
A durable transaction is one in which all committed changes are permanent. True False TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following allows dirty reads, nonrepeatable reads and phantom reads to occur? Read committed Repeatable read Serializable Read uncommitted TRUE ANSWER : ? YOUR ANSWER : ?
An exclusive lock locks the item from change but not from read. False True TRUE ANSWER : ? YOUR ANSWER : ?
What is the overall responsibility of the DBA? Facilitate the development and use of the database Development, operation, and maintenance of the database and its applications Create and populate tables Both the first and third answers above are correct. TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following disallows both dirty reads and nonrepeatable reads, but allows phantom reads? Serializable Read uncommitted Read committed Repeatable read TRUE ANSWER : ? YOUR ANSWER : ?