軟件測試開發語言oracle temp01.dbf 文件的釋放 數據庫開發
create temporary tablespace temp2
tempfile 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\TEMP02.DBF' size 512M reuse
autoextend on next 640k maxsize unlimited;
alter database default temporary tablespace temp2;
drop tablespace temp including contents and datafiles;
--(注意:由于臨時表空間的數據文件比較大,所以這步可能會花費比較長的時間)
create temporary tablespace temp
tempfile 'D:\ORACLE\PRODUCT\10.2.0\ORADATA\ORCL\TEMP01.DBF' size 512M reuse
autoextend on next 640K maxsize unlimited;
alter database default temporary tablespace temp;
drop tablespace temp2 including contents and datafiles;
原文轉自:http://www.anti-gravitydesign.com