Orcale許可權、角色查看建立方法

來源:互聯網
上載者:User

查看目前使用者擁有的系統許可權 複製代碼 代碼如下:select * from user_sys_privs;

系統許可權 系統管理員授予-----sys使用者 複製代碼 代碼如下:create user lisi identified by 123456 //建立使用者
grant create session to lisi //授予擁有會話的許可權
grant create table to lisi //授予建立表的許可權
grant create unlimited tablespace to lisi //授予無空間限制的許可權
revoke create session from lisi //撤銷許可權
revoke create table from lisi
revoke create unlimited tablespace from lisi

目前使用者對對象擁有是許可權 複製代碼 代碼如下:select * from user_tab_privs;

對象許可權 對象建立者授予或撤銷許可權
如:lisi使用者建立表 tab 複製代碼 代碼如下:grant select on tab to wangwu //對錶tab的查詢條件授予給wangwu使用者
grant all on tab to wangwu //對錶tab的所有操作授予給wangwu使用者
revoke select on tab from wangwu
revoke all on tab from wangwu

許可權傳遞
sys -> A使用者 -> B使用者
系統許可權 複製代碼 代碼如下:grant ceate any table to lisi with admin option; //李四使用者可以將此許可權傳遞給其它使用者

對象許可權 複製代碼 代碼如下:grant select on tabA to lisi with grant option;

角色 複製代碼 代碼如下:create(drop) role myrole
grant create session to myrole
grant create table to myrole
grant myrole to lisi

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.