码迷,mamicode.com
首页 > 其他好文 > 详细

【OCP认证12c题库】CUUG 071题库考试原题及答案(27)

时间:2019-02-21 12:30:07      阅读:158      评论:0      收藏:0      [点我收藏+]

标签:com   val   update   insert   create   te pro   led   exe   mit   

27.choose two

The SQL statements executed in a user session are as follows:

SQL> CREATE TABLE product

(pcode NUMBER(2),

pname VARCHAR2(10));

SQL> INSERT INTO product VALUES (1, ‘pen‘);

SQL> INSERT INTO product VALUES (2,‘pencil‘);

SQL> SAVEPOINT a;

SQL> UPDATE product SET pcode = 10 WHERE pcode = 1;

SQL> SAVEPOINT b;

SQL> DELETE FROM product WHERE pcode = 2;

SQL> COMMIT;

SQL> DELETE FROM product WHERE pcode=10;

SQL> ROLLBACK TO SAVEPOINT a;

Which two statements describe the consequences of issuing the ROLLBACK TO SAVE POINT a command in the session?

A) Only the second DELETE statement is rolled back.

B) No SQL statements are rolled back.

C) Both the DELETE statements and the UPDATE statement are rolled back.

D) The rollback generates an error.

E) Only the DELETE statements are rolled back.

Answer:BD

(因为 commit 操作,前面所有的保存点都结束)

【OCP认证12c题库】CUUG 071题库考试原题及答案(27)

标签:com   val   update   insert   create   te pro   led   exe   mit   

原文地址:http://blog.51cto.com/13854012/2352812

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!