ORACLE許可權管理 建立唯讀賬號

2022-06-29 22:57:13 字數 954 閱讀 7600

建立唯讀使用者:

grant connect to user;

grant create session to user;

1.建立角色

create role select_role

2.給角色分配許可權

grant select any dictionary to select_role;

grant select any table to select_role;

grant select any transaction to select_role;

grant select any sequence to select_role;

3.把角色賦予指定賬戶

grant select_role to user;

4.刪除角色

drop role select_role;

5:查詢

select * from dba_sys_privs where grantee='select_role';

select * from role_sys_privs where role='select_role';

select * from dba_tab_privs where grantee='select_role';

建立讀儲存過程的使用者

1:建立角色

create role debug_procedure

2:給角色分配許可權

grant execute any procedure to debug_procedure;

grant create any procedure to debug_procedure;

grant debug any procedure to debug_procedure;

3.把角色賦予指定賬戶

grant debug_procedure to user;

Oracle建立唯讀許可權使用者

我們使用者histest下面有很多表,需建立使用者 hongshu no1.先建立乙個使用者hongshu,密碼hongshu no2.給他一些許可權,包括連線許可權,因為他要建立同義詞,還需要給他同義詞 grant connect to hongshu grant create synonym t...

linux建立使用者唯讀許可權

6.將允許執行的命令鏈結到 home bin目錄 第二步 在相應服務的log日誌資料夾授權 本文摘自 useradd s bin bash test這步不要指定rbash,否側cd等內建命令無法使用 passwd testmkdir home test binchown root.home test...

如何建立唯讀許可權oracle賬戶 同義詞

另見 1.建立角色 create role select role 2.給角色分配許可權 grant select any dictionary to select role grant select any table to select role grant select any transac...