問題1
Which of the following is a valid declaration of a cursor?
Which of the following is a valid declaration of a cursor?
正確答案: B
問題2
Which two statements are correct about privileges? (Choose two.)
Which two statements are correct about privileges? (Choose two.)
正確答案: A,C
問題3
A user has opened two sessions, SESSION_1 and SESSION_2, connecting to the same database containing a table named customer.
The following query is executed first from SESSION_1 and then from SESSION_2 (without closing SESSION_1):
SELECT * FROM customer INTO TEMP cust_temp
What is the outcome in SESSION_2?
A user has opened two sessions, SESSION_1 and SESSION_2, connecting to the same database containing a table named customer.
The following query is executed first from SESSION_1 and then from SESSION_2 (without closing SESSION_1):
SELECT * FROM customer INTO TEMP cust_temp
What is the outcome in SESSION_2?
正確答案: A
問題4
Table stock with columns stock_num, manu_code and price has following four rows in it

Table stock with columns stock_num, manu_code and price has following four rows in it

正確答案: A
問題5
Which type of isolation level results in a lock on every row a query examines in order to retrieve any row from the result set?
Which type of isolation level results in a lock on every row a query examines in order to retrieve any row from the result set?
正確答案: A
問題6
Which Committed Read isolation level statement is correct?
Which Committed Read isolation level statement is correct?
正確答案: B
問題7
When an cursor is created with the FOR UPDATE syntax, which type of lock is the result?
When an cursor is created with the FOR UPDATE syntax, which type of lock is the result?
正確答案: C
問題8
How can you prevent concurrency problems when other users are modifying a nonlogging or raw table?
How can you prevent concurrency problems when other users are modifying a nonlogging or raw table?
正確答案: A
問題9
What type of cursor would allow uninterrupted access to a set of rows across multiple transactions?
What type of cursor would allow uninterrupted access to a set of rows across multiple transactions?
正確答案: A