zoukankan      html  css  js  c++  java
  • 详解Oracle的unlimited tablespace系统权限

    1. 系统权限unlimited tablespace是隐含dba, resource角色中的一个系统权限.

    2. 系统权限unlimited tablespace不能被授予role, 可以被授予用户.

    3. 系统权限unlimited tablespace不会随着resource, dba被授予role而授予给用户.

    实验1

    SQL> create user u1 identified by u1;

    User created.

    SQL> grant connect, resource to u1;

    Grant succeeded.

    SQL> select * from dba_role_privs a where a.grantee='U1';

    GRANTEE              GRANTED_ROLE         ADM DEF

    -------------------- -------------------- --- ---

    U1                   RESOURCE             NO  YES

    U1                   CONNECT              NO  YES

    SQL> select * from dba_sys_privs a where a.grantee='U1';

    GRANTEE              PRIVILEGE            ADM

    -------------------- -------------------- ---

    U1                   UNLIMITED TABLESPACE NO

    SQL> revoke unlimited tablespace from u1;

    Revoke succeeded.

    SQL> select * from dba_sys_privs a where a.grantee='U1';

    no rows selected

    实验2

    SQL> create role r1;

    Role created.

    SQL> grant unlimited tablespace to r1;

    ORA-01931: cannot grant UNLIMITED TABLESPACE to a role

    不能受权给角色r1.

     

    SQL> grant unlimited tablespace to u1;

    Grant succeeded.

    不能受权给用户u1.

    实验3

    SQL> revoke resource from u1;

    Revoke succeeded.

    SQL> grant resource to r1;

    Grant succeeded.

    SQL> grant r1 to u1;

    Grant succeeded.

    SQL> select * from dba_role_privs a where a.grantee='U1';

    GRANTEE              GRANTED_ROLE         ADM DEF

    -------------------- -------------------- --- ---

    U1                   R1                   NO  YES

    U1                   CONNECT              NO  YES

    SQL> select * from dba_sys_privs a where a.grantee='U1';

    no rows selected

    系统权限中没有unlimit tablespace系统权限.

  • 相关阅读:
    yii2:如果获取config/web.php配置的值?
    yii2:引用项目外的文件或类
    yii2: oracle汉字占用字节长度
    yii2: oralce中文,有的汉字是2个字节,有的汉字是3个字节
    yii2:frontend/frontactoin curl生成
    Appium做Android功能自动化测试
    appium server日志分析
    appium的初始化准备工作
    Appium的Java封装
    使用Runtime.getRuntime().exec()在java中调用python脚本
  • 原文地址:https://www.cnblogs.com/seasonzone/p/3496117.html
Copyright © 2011-2022 走看看