oracle臨時表空間的作用與創(chuàng)建及相關操作詳解
1.1 臨時表空間作用
用來存放用戶的臨時數(shù)據(jù),臨時數(shù)據(jù)就是在需要時被覆蓋,關閉數(shù)據(jù)庫后自動刪除,其中不能存放永久臨時性數(shù)據(jù)。
如:
當用戶對大量數(shù)據(jù)進行排序時,排序在PGA中進行,若數(shù)據(jù)過多,導致內(nèi)存不足,oracle會把需要排序的數(shù)據(jù)分為多份,每次取一份在PGA中排序,其余部分放在臨時表空間,直至所有數(shù)據(jù)排序完成,不過臨時表空間在硬盤上,數(shù)據(jù)交換降低性能
1.2 臨時表空間和臨時表空間組
臨時表空間組是由一組臨時表空間組成的組,臨時表空間組和臨時表空間不能同名。臨時表空間組不能顯式地被創(chuàng)建和刪除;當把第一個臨時表空間分配某個臨時表空間組時,會自動創(chuàng)建臨時表空間組;當把臨時表空間組內(nèi)最后一個臨時表空間刪除時,會自動刪除臨時表空間組;
1.3 臨時表空間操作
(1) 查看表空間
select * from v$tablespace;
(2) 查看表空間詳細信息
select * from dba_tablespaces;
CONTENTS字段值為TEMPORARY,即臨時表空間
(3) 查看除臨時表空間外 表空間對應的數(shù)據(jù)文件
select * from dba_data_files;
(4) 查看臨時表空間對應的數(shù)據(jù)文件
select * from dba_temp_files;
select * from v$tempfile;
(5) 查看臨時表空間組信息
select * from dba_tablespace_groups;
(6) 查看默認的臨時表空間
select * from database_properties where PROPERTY_NAME='DEFAULT_TEMP_TABLESPACE';
1.4 創(chuàng)建臨時表空間
(1) 創(chuàng)建不屬于組的臨時表空間
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)修改系統(tǒng)默認的臨時表空間
修改為一個組
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的描述信息,發(fā)現(xiàn)如下:
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
可能是臨時表空間被占用,執(zhí)行以下腳本,查詢出占用臨時表空間的會話信息,使用alter system kill命令殺掉會話進程,即可解決問題。
也可以等待一段時間之后,對臨時表空間臨時文件進行刪除即可 。
總結(jié)
到此這篇關于oracle臨時表空間的作用與創(chuàng)建及相關操作的文章就介紹到這了,更多相關oracle臨時表空間創(chuàng)建內(nèi)容請搜索腳本之家以前的文章或繼續(xù)瀏覽下面的相關文章希望大家以后多多支持腳本之家!
相關文章
Oracle管道函數(shù)pipelined?function的用法小結(jié)
這篇文章主要介紹了Oracle管道函數(shù)pipelined?function的用法,本文通過實例代碼給大家介紹的非常詳細,對大家的學習或工作具有一定的參考借鑒價值,需要的朋友可以參考下2023-07-07Oracle數(shù)據(jù)庫存儲過程的調(diào)試過程
oracle如果存儲過程比較復雜,我們要定位到錯誤就比較困難,那么我們就可以用存儲過程的調(diào)試功能,下面這篇文章主要給大家介紹了關于Oracle數(shù)據(jù)庫存儲過程調(diào)試的相關資料,需要的朋友可以參考下2022-07-07Oracle數(shù)據(jù)庫中建立索引的基本方法講解
這篇文章主要介紹了Oracle數(shù)據(jù)庫中建立索引的基本方法,包括對性能方面進行衡量而給出的一些索引的設計和使用建議,需要的朋友可以參考下2016-01-01簡單說明Oracle數(shù)據(jù)庫中對死鎖的查詢及解決方法
這篇文章主要介紹了Oracle數(shù)據(jù)庫中對死鎖的查詢及解決方法,文中用兩個表創(chuàng)造死鎖的簡單例子來說明對死鎖的撤銷方法,需要的朋友可以參考下2016-01-01Oracle DATABASE LINK(DBLINK)創(chuàng)建與刪除方法
這篇文章主要介紹了Oracle DATABASE LINK(DBLINK)創(chuàng)建與刪除方法,需要的朋友可以參考下2016-02-02