UNDO表空間不足解決方法

煙花丶易冷發表於2017-05-15
 

確認UNDO表空間名稱

select name from v$tablespace;

 

檢查資料庫UNDO表空間佔用空間情況以及資料檔案存放位置;

select file_name,bytes/1024/1024 from dba_data_files where tablespace_name like 'UNDOTBS1';

 

UNDO表空間不夠用,有兩種處理方法,1,擴大表空間大小;2,建立新的UNDO表空間,刪除原來的

 

一、擴大UNDO表空間

alter   database  UNDOTBS1 datafile   '/opt/oracle/oradata/inms/undotbs02.dbf'   resize   4000M;

 

二、建立新的UNDO表空間,刪除原來的

1、建立新的UNDO表空間,並設定自動擴充套件引數;

create undo tablespace undotbs2 datafile '/oradata/oradata/ddptest/UNDOTBS1.dbf' size    2 1000m reuse autoextend on next 800m maxsize unlimited;

 

2、動態更改spfile配置檔案;

alter system set undo_tablespace=undotbs2 scope=both;

 

3、刪除原有的UNDO表空間;

drop tablespace undotbs1 including contents;

 

4、確認刪除是否成功;

select name from v$tablespace;

 

5、確定$ORACLE_HOME/dbs/spfileoinms.ora內容是否發生變更:

 

$more spfileoinms.ora

 

*.undo_management='AUTO'

*.undo_retention=10800

*.undo_tablespace='UNDOTBS2'

 

如果沒有發生變更請執行如下語句:

 

SQL> create pfile from spfile;

 

File created.

 

 

6、刪除原UNDO表空間的資料檔案,其檔名為步驟中執行的結果。

 

#rm $ORACLE_BASE/oradata/$ORACLE_SID/undotbs01.dbf

 

 

 

 

如何處理OracleUNDO表空間所對應的資料檔案過大

[日期:2011-04-18]

來源:Linux社群  作者:Linux

google_protectAndRun("render_ads.js::google_render_ad", google_handleError, google_render_ad); 1 檢視undo的表空間大小和最大值  
select   t.file_name,t.tablespace_name,  
t.bytes/1024/1024/1024 "GB",  t.maxbytes/1024/1024/1024   "Max GB" 
 from     dba_data_files     t     where    t.tablespace_name='UNDOTBS1' 

 


   

資料檔案為:/oracle/oradata/undo/undotbs01.dbf  
   
2
建立一個新的undo表空間,用來替換原來的undo表空間  
create      undo     tablespace    UNDOTBS2  
datafile     '/oracle/oradata/log/undotbs02.dbf' 
size    10M    autoextend     on    maxsize    unlimited;  
3
把新的undo表空間設定成資料庫的undo表空間  
alter     system     set undo_tablespace=UNDOTBS2     scope=both;  
4
再次驗證資料庫的undo表空間  
 show     parameter     undo_tablespace  
5
等待原UNDO表空間UNDOTBS1 is OFFLINE  
   
 SELECT    r.status    "Status",  
r.segment_name    "Name",  
r.tablespace_name     "Tablespace",  
s.extents     "Extents",  
TO_CHAR((s.bytes/1024/1024),'99999990.000')     "Size" 
FROM     sys.dba_rollback_segs      r, sys.dba_segments    s  
WHERE        r.segment_name = s.segment_name  
AND       s.segment_type IN ('ROLLBACK', 'TYPE2 UNDO')  
and       r.tablespace_name='UNDOTBS1'      and       status='ONLINE' 
如果上面有狀態online的物件,可以查詢具體物件的sidserial#  
5.1
檢視當前是什麼在使用這個回滾段  
 SELECT     r.NAME,s.sid,s.serial# Serial,  
s.username ,s.machine ,  
t.start_time,t.status ,  
t.used_ublk ,  
substr(s.program, 1, 15)    "operate" 
FROM      v$session    s, v$transaction    t, v$rollname    r,v$rollstat    g  
WHERE      t.addr = s.taddr  
AND      t.xidusn = r.usn  
AND     r.usn = g.usn  
ORDER     BY     t.used_ublk desc;  
--
比如:物件為:sid  474,serial  6794 
5.2
根據sid查出具體的sql  
select     sql_text    from     v$session a,v$sqltext_with_newlines     b  
  where DECODE(a.sql_hash_value, 0, prev_hash_value, sql_hash_value)=b.hash_value  
  and      a.sid=&sid    order     by     piece  
如果該sql不重要,可以直接kill該會話。  
   
5.3  kill session  
alter system kill session '474,6794';  
5.4 
刪除原undo表空間及其系統的資料問題  
drop tablespace UNDOTBS1 including contents and datafiles;  
(在AIX系統中,雖然已經刪除了系統所對應的undo表空間的資料檔案,但用df -g檢視,該系統空間不能釋放。  
主要是由於Oracle的一個程式在訪問該檔案。可以kill Oracle訪問程式,或者重啟資料庫後,即可釋放系統的空間。)  
   
   
6
新建立UNDOTBS1表空間  
create     undo     tablespace    UNDOTBS1  
datafile    '/oracle/oradata/undo/undotbs01.dbf' 
size    10M    autoextend   on    maxsize 12G;  
   
7
切換回UNTOTBS1  
alter system set undo_tablespace=UNDOTBS1 scope=both;  
8
等待UNDO表空間UNDOTBS2 is OFFLINE  
 SELECT r.status "Status",  
r.segment_name "Name",  
r.tablespace_name "Tablespace",  
s.extents "Extents",  
TO_CHAR((s.bytes/1024/1024),'99999990.000') "Size" 
FROM sys.dba_rollback_segs r, sys.dba_segments s  
WHERE r.segment_name = s.segment_name  
AND s.segment_type IN ('ROLLBACK', 'TYPE2 UNDO')  
and r.tablespace_name='UNDOTBS2' 
ORDER BY 5 DESC;  
9
刪除  
drop    tablespace     UNDOTBS2    including    contents    and     datafiles; 

 

 

FROM:http://blog.chinaunix.net/uid-57485-id-3171219.html

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/29618264/viewspace-2139086/,如需轉載,請註明出處,否則將追究法律責任。

相關文章