【2019】OCP考试062题库近期考试原题解析-第56题
最新学讯:近期OCP认证正在报名中,因考试人员较多请尽快报名获取最近考试时间,报名费用请联系在线老师,甲骨文官方认证,报名从速!
我要咨询2018年的时候,OCP 11g考试题库大更新,052 053出现了很多新题,
2019年,11g即将停考的前期,Oracle又出现了一次大变动,12c出现了很多新题,比如062 063题库大更新
OCP解析公开课时间:【每周五晚8点】
OCP解析公开课地址:http://ke.qq.com/course/326223
OCP解析群资料分享:1015267481 验证:ocp
-------------------------------------------------------
56题、choose two
In your database, USERS is the default permanent tablespace.
Examine the commands and their outcome:
SQL> CREATE USER user02 identified by us123 QUOTA 10M ON users;
User created.
SQL> GRANT create session, sysDBA TO user02;
Grant succeeded.
You plan to execute the commands:
SQL> CONN user02/us123 AS SYSDBA
SQL> CREATE TABLE mytab (id number, lname varchar2(20));
Which two statements are true?
A) The MYTAB table is created in the SYSTEM tablespace and rows can be inserted into the table by USER02.
B) The MYTAB table is owned by the SYS user.
C) The MYTAB table is created in the USERS tablespace but no rows can be inserted into the table by USER02.
D) The CREATE TABLE statement generates an error because the SYSDBA privilege does not provide any space quota on the SYSTEM tablespace by default.
E) The MYTAB table is created in the SYSTEM tablespace but no rows can be inserted into the table by USER02.
Answer:BE
(解析:当以sysDBA权限登录时,用户名就是sys,跟user02没有关系了,所有创建的表都是属于sys,存放在system表空间。)