您好,登錄后才能下訂單哦!
這篇文章給大家分享的是有關Oracle如何創建普通用戶并賦予權限的內容。小編覺得挺實用的,因此分享給大家做個參考,一起跟隨小編過來看看吧。
Oracle 創建普通用戶,并賦予權限
1) 采用sys or system / manager as sysdba; 連接數據庫。
2) 創建普通用戶peng: create user peng identified by pwd_oracle;
刪除用戶, drop user peng;
3) 授予用戶登錄數據庫的權限: grant create session to peng;
4) 授予用戶操作表空間的權限:
grant unlimited tablespace to peng;
grant create tablespace to peng;
grant alter tablespace to peng;
grant drop tablespace to peng;
grant manage tablespace to peng;
5) 授予用戶操作表的權限:
grant create table to peng; (包含有create index權限, alter table, drop table權限)
6) 授予用戶操作視圖的權限:
grant create view to peng; (包含有alter view, drop view權限)
7) 授予用戶操作觸發器的權限:
grant create trigger to peng; (包含有alter trigger, drop trigger權限)
8) 授予用戶操作存儲過程的權限:
grant create procedure to peng;(包含有alter procedure, drop procedure 和function 以及 package權限)
9) 授予用戶操作序列的權限:
grant create sequence to peng; (包含有創建、修改、刪除以及選擇序列)
10) 授予用戶回退段權限:
grant create rollback segment to peng;
grant alter rollback segment to peng;
grant drop rollback segment to peng;
11) 授予用戶同義詞權限:
grant create synonym to peng;(包含drop synonym權限)
grant create public synonym to peng;
grant drop public synonym to peng;
12) 授予用戶關于用戶的權限:
grant create user to peng;
grant alter user to peng;
grant become user to peng;
grant drop user to peng;
13) 授予用戶關于角色的權限:
grant create role to peng;
14) 授予用戶操作概要文件的權限
grant create profile to peng;
grant alter profile to peng;
grant drop profile to peng;
15) 允許從sys用戶所擁有的數據字典表中進行選擇
grant select any dictionary to peng;
感謝各位的閱讀!關于“Oracle如何創建普通用戶并賦予權限”這篇文章就分享到這里了,希望以上內容可以對大家有一定的幫助,讓大家可以學到更多知識,如果覺得文章不錯,可以把它分享出去讓更多的人看到吧!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。