【2019年8月版本】Oracle OCP认证 071考试原题-30
最新学讯:近期OCP认证正在报名中,因考试人员较多请尽快报名获取最近考试时间,报名费用请联系在线老师,甲骨文官方认证,报名从速!
我要咨询【2019年8月版本】OCP 071认证考试最新版本的考试原题-30-CUUG整理
OCP的071考试,在8月份左右全部换了新题,近期考试的题也全部不包括之前的题库了,这次Oracle更新071考试题库,虽然全都是新题,但跟之前的相比也有关联,比如把之前的考题稍微变换一下数字、更新一下日期、或者再加一个错误选项等等。
对于2019年8月份的更新,我们CUUG已经进行了收集整理,并给出初步的答案和讲解,仅供参考,希望对考OCP 071认证的同学有帮助。
choose two
Evalute these conmands which execate sucestully
CREATE SEQUENCE ord_seq
INCREMENT BY 1
START WITH 1
MAXVALUE 100000
CYCLE
CACHE 5000;
Which two statements are true atout the ORD_ITEMS table and the ORD_SEQ sequence?
A) Any user inserting rows into table ORD_ITEMS must have been granted access to sequence ORD_SEQ.
B) Colunn ORD_NO gets the next number from squence ORD_SEQ whenever a row is inserted into ORD_ITEMS and no explict value is given for ORD_NO.
C) Sepuence ORD_SEQ cycles back to 1 after every 5000 numbers and can cycle 20 times
D) IF sequence ORD_SEQ is dropped then the default value for column ORD_NO will be NULL for rows inserted into ORD_ITEMS.
E) Sequence ORD_SEQ is guaranteed not to genenate duplicate numbers.
Answer:AB
(解析:序列是可以共享的,但是需要给予 select 的权限;可以从序列中获取下一个值。)