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