OCP-052考试题库汇总(58)-CUUG内部解答版
Posted cnblogs5359
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OCP-052考试题库汇总(58)-CUUG内部解答版相关的知识,希望对你有一定的参考价值。
In one of your databases:
1.USER1 and USER2 have no system privileges.
2.ROLE1 only has these privileges:
?CREATE SESSION
?CREATE TABLE
?CREATE VIEW
Examine these commands:
SQL> conn / as sysdba
Connected.
SQL> GRANT create table, role1 TO user1 WITH ADMIN OPTION;
Grant succeeded.
SQL> conn user1/oracle_4U
Connected.
SQL> GRANT role1 TO user2;
Grant succeeded.
Which command would you execute and as which user, to revoke the create table privilege from USER2?
A)REVOKE CREATE TABLE FROM user2 as SYS
B)REVOKE CREATE TABLE FROM role1 as SYS
C)REVOKE CREATE TABLE FROM role1 as USER1
D)REVOKE CREATE TABLE FROM user1 as SYS
Answer: B
只有 sys 用户才能够从 role 中 revoke 权限,而 user1 只能把 role 授权给其它用户,或者从其它用户回收 role。
以上是关于OCP-052考试题库汇总(58)-CUUG内部解答版的主要内容,如果未能解决你的问题,请参考以下文章