oracle 建立使用者 給使用者設定許可權

來源:互聯網
上載者:User

--select * from dba_users; 查詢資料庫中的所有使用者

  --alter user TEST_SELECT account lock; 鎖住使用者

  --alter user TEST_SELECT account unlock; 給使用者解鎖

  --create user xujin identified by   xujin; 建立使用者

  --grant create tablespace to xujin; 授權

  --grant select on tabel1 to xujin; 授權查詢

  --grant update on table1 to xujin;

  --grant execute on procedure1 to xujin 授權存放區過程

  --grant update on table1 to xujin with grant option; 授權更新許可權轉移給xujin使用者,許進使用者可以繼續授權;

  --收回許可權

  --revoke select on table1 from xujin1; 收回查詢select表的許可權;

  --revoke all on table1 from xujin;

  /*grant connect to xujin;

  revoke connect from xujin

  grant select on xezf.cfg_alarm to xujin;

  revoke select on xezf.cfg_alarm from xujin;*/

  --select table_name,privilege from dba_tab_privs where grantee='xujin' 查詢一個使用者擁有的對象許可權

  --select * from dba_sys_privs where grantee='xujin' 查詢一個使用者擁有的系統許可權

  --select * from session_privs --當錢會話有效系統許可權

  --角色

  --create role xujin1;--建立xujin1角色

  --grant insert on xezf.cfg_alarm to xujin1; 將插入表的資訊

  --revoke insert on xezf.cfg_alarm from xujin1; 收回xujin1角色的許可權

  --grant xujin1 to xujin ; 將角色的許可權授權給xujin;

  -- create role xujin2;

  --grant xujin1 to xujin2; 將角色xujin1授權給xujin2;

  --alter user xujin default xujin1,xujin2; 修改使用者預設角色

  -- DROP ROLE xujin1;刪除角色1;

  --select * from role_sys_privs where role=xujin1;

  --查看許進1角色下有什麼系統許可權;

  --select granted_role,admin_option from role_role_privs where role='xujin2';

  --查看xujin1角色下面有什麼角色許可權

  --select * from role_sys_privs where role='xujin2';

  --select table_name,privilege from role_tab_privs where role='xujin1';

  --select * from dba_role_privs where grantee='xujin' --查看使用者下面有多少個角色;

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.