oracle創建用戶過程詳解

1.首先用管理員用戶登陸sqlplus:

sqlplus "sysman/安裝時設置的密碼"  

2.創建用戶

create user userName identified by password; 

創建用戶 userName,密碼為 password

3.給用戶授權

grant dba to userName; --授予DBA權限  
grant unlimited tablespace to userName;--授予不限制的表空間  
grant select any table to userName; --授予查詢任何表  
grant select any dictionary to userName;--授予 查詢任何字典 

4. 創建表空間

–創建立表空間

 
    CREATE TABLESPACE cheng DATAFILE 'C:\oraclexe\oradata\XE\cheng.dbf' SIZE 500M
UNIFORM SIZE 128k;              #指定區尺寸為128k,如不指定,區尺寸默認為64k
 
--刪除表空間
 
     DROP TABLESPACE cheng INCLUDING CONTENTS AND DATAFILES
 
--修改表空間大小
 
     alter database datafile 'c:\oraclexe\oradata\XE\cheng.dbf' resize 50M

到此這篇關於oracle創建用戶過程詳解的文章就介紹到這瞭,更多相關oracle創建用戶內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!

推薦閱讀: