刪掉Oracle臨時表空間

guifx027發表於2007-06-06

1.建立一個新的臨時表空間
create temporary tablespace t_temp tempfile
'e: mp.dbf' size 100M;

2.將系統預設表空間改為新建的表空間
ALTER DATABASE DEFAULT TEMPORARY TABLESPACE "T_TEMP";

3.drop舊錶空間
drop tablespace temp including contents;

------------例子
create temporary tablespace TEMP_SPC tempfile
'e:TEMP01.dbf' size 100M;

ALTER DATABASE DEFAULT
TEMPORARY TABLESPACE "TEMP_SPC";

drop tablespace temp including contents;
------------

另建立資料空間語法:
create tablespace DATA_SPC datafile 'e:user01.dbf' size 100M;

[@more@]

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/10018906/viewspace-917623/,如需轉載,請註明出處,否則將追究法律責任。

相關文章