本文將介紹的是通過創建一張表
注意
//創建空間 create tablespace test datafile
//Oracle創建用戶權限//創建用戶 create user lxg identified by lxg default tablespace test; //授權 grant resource
//刪除表空間 drop tablespace
刪除用戶
drop user
增加表空間
alter tablespace chinawater add datafile
創建用戶
create user userName identified by password;
創建用戶 userName
給用戶授權
grant dba 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