Oracle安裝在centos系統(tǒng)上,系統(tǒng)磁盤空間本身不是很大,運行一段時間后發(fā)現(xiàn)Oracle的臨時表空間占用磁盤越來越大,以至于系統(tǒng)處于崩潰的邊緣,解決該問題的方法如下:
成都創(chuàng)新互聯(lián)公司專業(yè)為企業(yè)提供潘集網(wǎng)站建設(shè)、潘集做網(wǎng)站、潘集網(wǎng)站設(shè)計、潘集網(wǎng)站制作等企業(yè)網(wǎng)站建設(shè)、網(wǎng)頁設(shè)計與制作、潘集企業(yè)網(wǎng)站模板建站服務(wù),十載潘集做網(wǎng)站經(jīng)驗,不只是建網(wǎng)站,更提供有價值的思路和整體網(wǎng)絡(luò)服務(wù)。
第一步:
alter database tempfile '/opt/oracle/oradata/orcl/temp01.dbf' drop;
第二步:
alter tablespace temp add tempfile
'/opt/oracle/oradata/orcl/temp01.dbf'
size 2048M reuse autoextend on next 100M;
第三步:
select d.file_name, d.file_id, d.tablespace_name, d.bytes
from dba_temp_files d;
第四步:
alter database tempfile '/opt/oracle/oradata/orcl/temp01.dbf' autoextend off;
(只是為了解決小問題,不深究。)
正常來說,在完成Select語句、create index等一些使用TEMP表空間的排序操作后,Oracle是會自動釋放掉臨時段a的。但有些有侯我們則會遇到臨時段沒有被釋放,TEMP表空間幾乎滿的狀況,甚至是我們重啟了數(shù)據(jù)庫仍沒有解決問題
在檢查centos系統(tǒng)的磁盤空間時,發(fā)現(xiàn)臨時表空間所在臨時數(shù)據(jù)文件已經(jīng)達到35G,已經(jīng)占用了100%。
因為是正式數(shù)據(jù)庫服務(wù)器,不能隨便重啟數(shù)據(jù)庫。
以下的操作是用數(shù)據(jù)庫的sys超級用戶操作
剛開始打算把臨時表空間的數(shù)據(jù)文件重新縮小就好了
執(zhí)行:
SQL> alter database tempfile '/opt/oracle/oradata/orcl/temp01.dbf' resize 10240M;
數(shù)據(jù)庫報錯,重新設(shè)置的空間大小不能滿足需要。
看來需要重新建立新的臨時表空間替換當前的表空間了
1、首先查看當前的數(shù)據(jù)庫默認表空間:
SQL>select * from database_properties where property_name='DEFAULT_TEMP_TABLESPACE';
確認當前的臨時表空間為TEMP
2、查看目前臨時表空間的大?。?br />
SQL>select file_name,tablespace_name,bytes/1024/1024 "MB",autoextensible from dba_temp_files;
3、創(chuàng)建新的臨時表空間:
SQL> create temporary tablespace temp02 tempfile '/opt/oracle/oradata/orcl/temp02.dbf' size 512M;
4、把新建的臨時表空間卻換成數(shù)據(jù)庫的默認臨時表空間
SQL> alter database default temporary tablespace temp02;
5、確認目前數(shù)據(jù)庫的默認臨時表空間
SQL>select * from database_properties where property_name='DEFAULT_TEMP_TABLESPACE';
確認temp02為當前的數(shù)據(jù)庫默認表空間
6、在刪除temp臨時表空間之前,先把運行在temp臨時表空間的sql語句kill掉,這樣的sql語句多為排序的語句
SQL>Select se.username,se.sid,se.serial#,su.extents,su.blocks*to_number(rtrim(p.value))as Space,
tablespace,segtype,sql_text
from v$sort_usage su,v$parameter p,v$session se,v$sql s
where p.name='db_block_size' and su.session_addr=se.saddr and s.hash_value=su.sqlhash
and s.address=su.sqladdr
order by se.username,se.sid;
查詢出來之后,kill掉這些sql語句:
SQL>alter system kill session '524,778'; (假如某一條運行的sql語句的SID為524,serial#為778)
確認在temp臨時表空間中沒有運行的sql語句之后,則可以刪除temp臨時表空間數(shù)據(jù)文件了
7、刪除temp臨時表空間
SQL> drop tablespace temp including contents and datafiles;
這樣很快就可以刪除了臨時表空間的數(shù)據(jù)文件
8、現(xiàn)在temp02臨時表空間占據(jù)了別人的磁盤空間,需要重新把臨時表空間建立在原來的位置,重新建立temp臨時表空間
SQL> create temporary tablespace temp tempfile '/opt/oracle/oradata/orcl/temp01.dbf' size 512M autoextend on maxsize 15G;
新建一個512M的自動擴展臨時表空間,最大的擴展為15G。
查看新建的temp臨時表空間是否正確:
SQL>select file_name,tablespace_name,bytes/1024/1024,maxbytes/1024/1024,autoextensible from dba_temp_files;
9、把新建的temp臨時表空間卻換成數(shù)據(jù)庫的默認臨時表空間
SQL> alter database default temporary tablespace temp;
10、確認目前數(shù)據(jù)庫的默認臨時表空間
SQL>select * from database_properties
where property_name='DEFAULT_TEMP_TABLESPACE';
確認temp為當前的數(shù)據(jù)庫默認表空間
11、目前把原來的temp臨時表空間變成了512M,把剩余的磁盤空間空了出來,temp02臨時表空間就沒有用了,刪除temp02臨時表空間
SQL> drop tablespace temp02 including contents and datafiles;