熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Oracle >> 正文

Oracle創建用戶權限的過程

2022-06-13   來源: Oracle 

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

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

  //創建空間  create tablespace test  datafile c:\oracle\oradata\orcl\testdbf size M  default storage (initial K   Next K  minextents   maxextents unlimited  pctincrease );

  //Oracle創建用戶權限//創建用戶  create user lxg identified by lxg default tablespace test;  //授權   grant resourceconnectdba to test;

  //刪除表空間   drop tablespace 空間名 including contents and datafiles

  刪除用戶

  drop user lxg cascade

  增加表空間

  alter tablespace chinawater add datafile c:\oracle\oradata\orcl\ADDCHINAWATERdbf size M

  創建用戶

  create user userName identified by password;

  創建用戶 userName密碼為 password

  

  給用戶授權

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

  grant dba to lxg;  grant unlimited tablespace to lxg;  grant select any table to lxg;  grant select any dictionary to lxg;


From:http://tw.wingwit.com/Article/program/Oracle/201311/17575.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.