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

2021-05-23 12:06:24 字數 2375 閱讀 9083

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

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

//建立空間

createtablespace test  

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

size50m

defaultstorage (initial 500knext500k 

minextents 1

maxextents unlimited 

pctincrease 0);

//oracle建立使用者許可權

//建立使用者

create

user

macro identifiedby

macropwddefaulttablespace test; 

//授權

grantresource,connect,dbatotest;

//刪除表空間

droptablespace  "空間名"

including contents  and

datafiles 

//刪除使用者

drop

user

"macro"

cascade

//增加表空間

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

size200m 

建立使用者

create

user

username identifiedby

password

建立使用者 username,密碼為 password

給使用者授權

grantdbatomacro; --授予dba許可權 

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

grant

select

anytable

tomacro; --授予查詢任何表 

grant

select

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

grantdbatomacro;

grantunlimited tablespacetomacro; 

grant

select

anytable

tomacro;

grant

select

any  dictionarytomacro;

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

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

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

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

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

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