- 論壇徽章:
- 0
|
1.
- //創(chuàng)建空間
-
create tablespace test
-
datafile 'c:\oracle\oradata\orcl9\test.dbf' size 50M
-
default storage (initial 500K
-
Next 500K
-
minextents 1
-
maxextents unlimited
-
pctincrease 0);
2.
- //Oracle創(chuàng)建用戶權限
-
//創(chuàng)建用戶
-
create user lxg identified by lxg default tablespace test;
-
//授權
-
grant resource,connect,dba to test;
3.
- //刪除表空間
-
drop tablespace "空間名" including contents and datafiles
4. 5.
- alter tablespace chinawater add datafile 'c:\oracle\oradata\orcl9\ADDCHINAWATER.dbf' size 200M
6.
- create user userName identified by password;
7.
- grant dba to lxg;--授予DBA權限
-
grant unlimited tablespace to lxg;--授予不限制的表空間
-
grant select any table to lxg;--授予查詢任何表
-
grant select any dictionary to lxg;
沒了
|
|