【實驗】重建臨時表空間解決臨時表空間過大問題
今天在測試庫中建立大表索引後臨時表空間自動擴充套件到了10G,我採用了重建臨時表空間的方式處理了一下,記錄如下:
1.建立中轉臨時表空間
create temporary tablespace temp1 tempfile '/oracle/oradata/secooler/temp02.dbf' size 512m reuse autoextend on next 1m maxsize unlimited;
2.改變預設臨時表空間為剛剛建立的新臨時表空間temp1
alter database default temporary tablespace temp1;
3.刪除原臨時表空間
drop tablespace temp including contents and datafiles;
4.重建臨時表空間
create temporary tablespace temp tempfile '/oracle/oradata/secooler/temp01.dbf' size 512m reuse autoextend on next 1m maxsize unlimited;
5.重置預設臨時表空間為新建的temp表空間
alter database default temporary tablespace temp;
6.刪除中轉用臨時表空間
drop tablespace temp1 including contents and datafiles;
OK,搞定!
BTW:
另外還有一種修改臨時表空間大小的方法,詳見《【實驗】RESIZE方法解決臨時表空間過大問題》
http://space.itpub.net/?uid-519536-action-viewspace-itemid-610138
-- The End --
1.建立中轉臨時表空間
create temporary tablespace temp1 tempfile '/oracle/oradata/secooler/temp02.dbf' size 512m reuse autoextend on next 1m maxsize unlimited;
2.改變預設臨時表空間為剛剛建立的新臨時表空間temp1
alter database default temporary tablespace temp1;
3.刪除原臨時表空間
drop tablespace temp including contents and datafiles;
4.重建臨時表空間
create temporary tablespace temp tempfile '/oracle/oradata/secooler/temp01.dbf' size 512m reuse autoextend on next 1m maxsize unlimited;
5.重置預設臨時表空間為新建的temp表空間
alter database default temporary tablespace temp;
6.刪除中轉用臨時表空間
drop tablespace temp1 including contents and datafiles;
OK,搞定!
BTW:
另外還有一種修改臨時表空間大小的方法,詳見《【實驗】RESIZE方法解決臨時表空間過大問題》
http://space.itpub.net/?uid-519536-action-viewspace-itemid-610138
-- The End --
來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/519536/viewspace-607567/,如需轉載,請註明出處,否則將追究法律責任。
相關文章
- 臨時表空間ORA-1652問題解決
- Oracle臨時表空間檢視、新增臨時表空間資料檔案、修改預設臨時表空間 方法!Oracle
- mysql臨時表,臨時表空間,ibtmp1表空間暴增原因初探MySql
- oracle臨時表空間相關Oracle
- 4.2.1.8規劃臨時表空間
- 刪除臨時表空間組
- MySQL InnoDB臨時表空間配置MySql
- 臨時表空間使用率過高的解決辦法
- 2.5.7 建立預設臨時表空間
- MySQL 5.7 新特性 共享臨時表空間及臨時表改進MySql
- oracle建立臨時表空間和資料表空間以及刪除Oracle
- 臨時表空間和回滾表空間使用率查詢
- 消除臨時表空間暴漲的方法
- SQLServer如何釋放tempdb臨時表空間SQLServer
- oracle建立使用者,表空間,臨時表空間,分配許可權步驟詳解Oracle
- MYSQL造資料佔用臨時表空間MySql
- oracle 臨時表空間的增刪改查Oracle
- oracle11g 查詢臨時表空間的使用率和正在使用臨時表空間的使用者Oracle
- 臨時表空間被佔滿的原因查詢
- dbms_lob儲存過程導致臨時表空間100%儲存過程
- 萬萬沒想到,我在夜市地攤解決了MySQL臨時表空間難題~~MySql
- 檢視oracle臨時表空間佔用率的檢視Oracle
- 查詢過去一段時間內某條sql使用的臨時表空間大小SQL
- Oracle 12C RMAN備份佔用大量臨時表空間Oracle
- Oracle 查詢佔用臨時表空間大的歷史會話和SQLOracle會話SQL
- 12C關於CDB、PDB 臨時temp表空間的總結
- Jenkins臨時空間不足處理辦法Jenkins
- oracle系統表空間過大問題處理Oracle
- 16、表空間 建立表空間
- 當使用者無限制使用表空間配額且表空間有足夠空間時出現超出表空間的空間限額
- 表空間TSPITR恢復-實驗
- 【Oracle 恢復表空間】 實驗Oracle
- undo表空間使用率過高解決
- [20210528]oracle大表空間預分配問題.txtOracle
- Postgresql表空間詳解SQL
- MySQL臨時表MySql
- PostgreSQL:臨時表SQL
- Oracle表空間Oracle
- oracle 表空間Oracle