您好,登錄后才能下訂單哦!
這篇文章主要介紹“oracle臨時表空間如何創建”的相關知識,小編通過實際案例向大家展示操作過程,操作方法簡單快捷,實用性強,希望這篇“oracle臨時表空間如何創建”文章能幫助大家解決問題。
用來存放用戶的臨時數據,臨時數據就是在需要時被覆蓋,關閉數據庫后自動刪除,其中不能存放永久臨時性數據。
如:
當用戶對大量數據進行排序時,排序在PGA中進行,若數據過多,導致內存不足,oracle會把需要排序的數據分為多份,每次取一份在PGA中排序,其余部分放在臨時表空間,直至所有數據排序完成,不過臨時表空間在硬盤上,數據交換降低性能
臨時表空間組是由一組臨時表空間組成的組,臨時表空間組和臨時表空間不能同名。臨時表空間組不能顯式地被創建和刪除;當把第一個臨時表空間分配某個臨時表空間組時,會自動創建臨時表空間組;當把臨時表空間組內最后一個臨時表空間刪除時,會自動刪除臨時表空間組;
select * from v$tablespace;
select * from dba_tablespaces;
CONTENTS字段值為TEMPORARY,即臨時表空間
select * from dba_data_files;
select * from dba_temp_files;
select * from v$tempfile;
select * from dba_tablespace_groups;
select * from database_properties where PROPERTY_NAME='DEFAULT_TEMP_TABLESPACE';
(1) 創建不屬于組的臨時表空間
create temporary tablespace temp2 tempfile 'D:\software\oracle\oradata\orcl\temp2a.dbf' size 10m autoextend on ;
(2) 屬于組的臨時表空間
create temporary tablespace temp3 tempfile 'D:\software\oracle\oradata\orcl\temp3a.dbf' size 10m autoextend on tablespace group temp_group ;
(2) 臨時表空間加入或移除臨時表空間組
把temp2加入到temp_group 中
alter tablespace temp2 tablespace group temp_group;
把temp2移除emp_group
alter tablespace temp2 tablespace group '';
(3)給臨時表空間添加一個臨時文件
alter tablespace temp2 add tempfile 'D:\software\oracle\oradata\orcl\temp2b.dbf' size 10m autoextend on;
(4)修改系統默認的臨時表空間
修改為一個組
alter database default temporary tablespace temp_group ;
修改為一個臨時表空間
alter database default temporary tablespace temp2;
alter tablespace temp drop tempfile '/m/oracle/oradata4/temp05.dbf'; alter tablespace temp drop tempfile '/m/oracle/oradata5/temp06.dbf'; alter tablespace temp drop tempfile '/m/oracle/oradata5/temp07.dbf'; alter tablespace temp add tempfile '/m/oracle/oradata4/temp05.dbf' size 1G reuse; alter tablespace temp add tempfile '/m/oracle/oradata5/temp06.dbf' size 1G reuse; alter tablespace temp add tempfile '/m/oracle/oradata5/temp07.dbf' size 1G reuse;
刪除過程:
SQL> alter database tempfile '/u01/app/oracle/oradata/temp2' drop including datafiles;
alter database tempfile '/u01/app/oracle/oradata/temp2' drop including datafiles
*
ERROR at line 1:
ORA-25152: TEMPFILE cannot be dropped at this time
通過查看官方針對ORA-25152的描述信息,發現如下:
ORA-25152: TEMPFILE cannot be dropped at this time
Cause: An attempt was made to drop a TEMPFILE being used by online users
Action: The TEMPFILE has been taken offline. Try again, later
可能是臨時表空間被占用,執行以下腳本,查詢出占用臨時表空間的會話信息,使用alter system kill命令殺掉會話進程,即可解決問題。
也可以等待一段時間之后,對臨時表空間臨時文件進行刪除即可 。
關于“oracle臨時表空間如何創建”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識,可以關注億速云行業資訊頻道,小編每天都會為大家更新不同的知識點。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。