zoukankan      html  css  js  c++  java
  • OCP-1Z0-052-V8.02-9题

    9. View the Exhibit and examine the privileges granted to the SL_REP user. 

    The EMP table is owned by the SCOTT user. The SL_REP user executes the following command:

    SQL> GRANT SELECT ON scott.emp TO hr;

    Which statement describes the outcome of the command?

    A.The command executes successfully.

    B.The command produces an error because the EMP table is owned by SCOTT.

    C.The command produces an error because SL_REP has the GRANT ANY OBJECT PRIVILEGE without

    ADMIN_OPTION.

    D.The command produces an error because SL_REP does not have the SELECT privilege with

    GRANT_OPTION on the EMP table.

    Answer: A  
    答案解析:
    环境测试一下:
    1、创建一个用户,并解锁
    sys@TEST0924> create user SL_REP identified by 123 account unlock;

    User created.
    2、将connect、resource角色赋予
    sys@TEST0924> grant connect,resource to SL_REP;

    Grant succeeded.
    3、将grant any object privilege 赋予

    sys@TEST0924> grant grant any object privilege to SL_REP;

    Grant succeeded.
    4、SL_REP连接数据库,开始授予hr访问scott的emp表,赋予成功。所以选择A。
    sys@TEST0924> conn SL_REP/123
    Connected.

    sl_rep@TEST0924> grant select on scott.emp to hr;

    Grant succeeded.

  • 相关阅读:
    2014/11/25 函数
    2014/11/24 条件查询
    2、计算器
    1、winform数据库调用(基本方法)
    1、网页基础
    14、函数输出参数、递归
    13、C#简易版 推箱子游戏
    12、函数
    11、结构体、枚举
    10、特殊集合
  • 原文地址:https://www.cnblogs.com/hzcya1995/p/13316948.html
Copyright © 2011-2022 走看看