Posted on 2009-03-12 17:15
Neil's NoteBook 閱讀(276)
評論(0) 編輯 收藏 所屬分類:
ORACLE
create temporary tablespace TEMP2 TEMPFILE '/home2/oracle/oradata/sysmon/temp02.dbf' SIZE 512M REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED; --創建中轉臨時表空間
alter database default temporary tablespace temp2; --改變缺省臨時表空間 為剛剛創建的新臨時表空間temp2
drop tablespace temp including contents and datafiles;--刪除原來臨時表空間
create temporary tablespace TEMP TEMPFILE '/home2/oracle/oradata/sysmon/temp01.dbf' SIZE 512M REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED; --重新創建臨時表空間
alter database default temporary tablespace temp; --重置缺省臨時表空間為新建的temp表空間
drop tablespace temp2 including contents and datafiles;--刪除中轉用臨時表空間