您好,登錄后才能下訂單哦!
為了防止臨時表空間無限制的增加,我采用隔一段時間就重建臨時表空間的方法,為了方便,我保留兩組語句,輪流執行即可,
假定現在臨時表空間名稱是temp,新建一個tempa表空間,刪除temp表空間,方法如下:
alter tablespace temp shrink spacekeep 400M;
create temporary tablespace TEMPA
TEMPFILE '/opt/app/oracle/oradata/orcl/tempa01.dbf '
SIZE 8192M REUSE AUTOEXTEND ON NEXT 1024K MAXSIZE UNLIMITED;
alter database default temporary tablespace tempa; --改變缺省臨時表空間
drop tablespace temp including contents and datafiles; --刪除原來臨時表空間
示例
create temporary tablespace TEMP TEMPFILE '/u01/app/oracle/oradata/orcl/temp01.dbf '
SIZE 256M REUSE AUTOEXTEND ON NEXT 1M MAXSIZE UNLIMITED;
alter database default temporary tablespace TEMP;
drop tablespace TEMP_NEW including contents and datafiles;
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。