您好,登錄后才能下訂單哦!
1、創建用戶
create user KD identified by 123456;
2、授予連接數據庫的權限
grant connect to KD;
3、將Scott用戶的emp表授權給KD可以查詢
grant select on scott.emp to KD; grant create table to KD;
4、回收權限
revoke select on scott.emp from KD;
5、表的增刪改權限授權
grant select,inset,delete,update on scott.emp to KD; revoke select,inset,delete,update on scott.emp from KD;
6、刪除用戶
SQL 錯誤: ORA-01940: 無法刪除當前連接的用戶
退出已經連接得KD用戶后再執行
drop user KD;
會提示:錯誤: ORA-01922: 必須指定 CASCADE 以刪除 'KD'
drop user KD cascade;
7、查看當前用戶所擁有的權限
select * from session_privs;
8、查看當前用戶所擁有的角色
select * from user_role_privs;
9、查看角色所有的權限
select * from dba_sys_privs; select * from dba_sys_privs where grantee='CONNECT'; --create session select * from dba_sys_privs where grantee='RESOURCE'; /* create trigger create sequence create type create procedure create cluster create operator create indextype create table */ select * from dba_sys_privs where grantee='DBA'; --有最高權限 所有的權限都有
創建一個開發人員并授權:
create user CURRY identified by 123456; create connet,resource to CURRY;
10、用戶解鎖
alter user HR account unlock;
11、修改用戶密碼
alter user HR identified by 123456;
以上所述是小編給大家介紹的純Oracle的用戶、角色以及權限相關操作,希望對大家有所幫助,如果大家有任何疑問請給我留言,小編會及時回復大家的。在此也非常感謝大家對億速云網站的支持!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。