//建立臨時表空間
create temporary tablespace test_temp//建立資料表空間tempfile 'e:\oracle\product\10.2.0\oradata\testserver\test_temp01.dbf'
size 32m
autoextend on
next 32m maxsize 2048m
extent management local;
create tablespace test_data//建立使用者並指定表空間logging
datafile 'e:\oracle\product\10.2.0\oradata\testserver\test_data01.dbf'
size 32m
autoextend on
next 32m maxsize 2048m
extent management local;
create user username identified by password//給使用者授予許可權default tablespace test_data
temporary tablespace test_temp;
grant connect,resource to username;//以後以該使用者登入,建立的任何資料庫物件都屬於test_temp 和test_data表空間,這就不用在每建立乙個物件給其指定表空間了。
**刪除表空間
drop tablespace hoteldata including contents and datafiles;
刪除使用者
drop user hotel cascade
oracle使用語句建立使用者和表空間
用 寫了個建立表空間的demo,直接貼 先儲存在這兒啦 建立臨時表空間 drop tablespace user data including contents and datafiles 刪除表空間及對應檔案,不能手動停服務刪除檔案 create temporary tablespace supp...
ORACLE表空間的常用語句
檢視資料表空間 select t.tablespace name,t.bytes,t.blocks,t.autoextensible,t.maxbytes,t.file name from dba data files t select from v datafile select upper f....
建立表空間語句 建立使用者
1 建立表空間 create tablespace yyy nologging datafile c yyy.dbf size 50m autoextend on next 50m maxsize 1024m extent management local datafile 是關鍵字,用於指定資料檔...