【第56题】【062题库】2019年OCP认证062考试新题

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表空间。来自3组:1015267481)

猜你喜欢

转载自www.cnblogs.com/cnblogs5359/p/11130601.html