程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> Oracle數據庫基礎 >> 詳解Oracle創建用戶權限全過程

詳解Oracle創建用戶權限全過程

編輯:Oracle數據庫基礎

本文將介紹的是通過創建一張表,進而實現Oracle創建用戶權限的過程。以下這些代碼主要也就是為實現Oracle創建用戶權限而編寫,希望能對大家有所幫助。

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

  1. //創建空間  
  2. create tablespace test  
  3. datafile 'c:\Oracle\oradata\orcl9\test.dbf' size 50M  
  4. default storage (initial 500K   
  5. Next 500K  
  6. minextents 1  
  7. maxextents unlimited  
  8. pctincrease 0); 
  1. //Oracle創建用戶權限
  2. //創建用戶  
  3. create user lxg identifIEd by lxg default tablespace test;  
  4. //授權   
  5. grant resource,connect,dba to test; 
  1. //刪除表空間   
  2. drop tablespace "空間名" including contents and datafiles 

刪除用戶

  1. drop user "lxg" cascade 

增加表空間

  1. alter tablespace chinawater add datafile 'c:\Oracle\oradata\orcl9\ADDCHINAWATER.dbf' size 200M 

創建用戶

  1. create user userName identifIEd by passWord

創建用戶 userName,密碼為 passWord

2

給用戶授權

  1. grant dba to lxg;--授予DBA權限  
  2. grant unlimited tablespace to lxg;--授予不限制的表空間  
  3. grant select any table to lxg;--授予查詢任何表  
  4. grant select any dictionary to lxg;--授予 查詢 任何字典 
  1. grant dba to lxg;  
  2. grant unlimited tablespace to lxg;  
  3. grant select any table to lxg;  
  4. grant select any dictionary to lxg; 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved