詳解Oracle建立使用者許可權全過程

2021-06-02 00:30:11 字數 2131 閱讀 8076

本文將介紹的是通過建立一張表,進而實現oracle建立使用者許可權的過程。以下這些**主要也就是為實現oracle建立使用者許可權而編寫,希望能對大家有所幫助。

注意:每條語語分開執行,結尾必須用分號;

//建立空間  

createtablespace test  

datafile 'c:\oracle\oradata\orcl9\test.dbf'

size50m  

defaultstorage (initial 500k   

next500k  

minextents 1  

maxextents unlimited  

pctincrease 0); 

//oracle建立使用者許可權

//建立使用者  

create

user

lxg identifiedbylxgdefaulttablespace test;  

//授權   

grantresource,connect,dbatotest; 

//刪除表空間   

droptablespace "空間名"

including contents and

datafiles 

刪除使用者

drop

user

"lxg"

cascade

增加表空間

altertablespace chinawateradddatafile 'c:\oracle\oradata\orcl9\addchinawater.dbf'

size200m 

建立使用者

create

user

username identifiedby

password

建立使用者 username,密碼為 password

給使用者授權

grantdbatolxg;--授予dba許可權 

grantunlimited tablespacetolxg;--授予不限制的表空間

grant

select

anytable

tolxg;--授予查詢任何表

grant

select

any dictionarytolxg;--授予 查詢 任何字典

grantdbatolxg;  

grantunlimited tablespacetolxg;  

grant

select

anytable

tolxg;  

grant

select

any dictionarytolxg; 

oracle使用者建立及許可權設定詳解

許可權 create session create table unlimited tablespace connect resource dba例 sqlplus nolog sql conn as sysdba sql create user username identified by pas...

Oracle建立使用者許可權

1.建立空間 create tablespace test datafile c oracle oradata orcl9 test.dbf size 50m default storage initial 500k next 500k minextents 1 maxextents unlimit...

詳解Oracle建立使用者許可權全過程

本文將介紹的是通過建立一張表,進而實現oracle建立使用者許可權的過程。以下這些 主要也就是為實現oracle建立使用者許可權而編寫,希望能對大家有所幫助。注意 每條語語分開執行,結尾必須用分號 建立空間 create tablespacetest datafile c oracle oradat...