Which of the following refers to a cursor type that when the cursor is opened, a primary key value is saved for each row in the recordset; when the application accesses a row, the key is used to fetch the current values of the row? Forward only Static Keyset Dynamic 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 : ?
The advantage of optimistic locking is that: the lock is obtained only after the transaction has processed. transactions that are best suited are those with a lot of activity. the lock is obtained before the transaction has processed. the lock never needs to be obtained. 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 Nonrepeatable read Phantom read Dirty read TRUE ANSWER : ? YOUR ANSWER : ?
In this instance, dirty reads are disallowed, while nonrepeatable reads and phantom reads are allowed. Serializable Repeatable read Read committed Read uncommitted TRUE ANSWER : ? YOUR ANSWER : ?
An exclusive lock locks the item from change but not from read. False True TRUE ANSWER : ? YOUR ANSWER : ?
The size of the lock is referred to as the lock granularity. False True TRUE ANSWER : ? YOUR ANSWER : ?
The size of a lock is called: shared lock lock granularity exclusive lock implicit lock TRUE ANSWER : ? YOUR ANSWER : ?
Which of the following disallows both dirty reads and nonrepeatable reads, but allows phantom reads? Read committed Serializable Repeatable read Read uncommitted 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 : ?