激情五月天婷婷,亚洲愉拍一区二区三区,日韩视频一区,a√天堂中文官网8

<ul id="buwfs"><strike id="buwfs"><strong id="buwfs"></strong></strike></ul>
    <output id="buwfs"></output>
  • <dfn id="buwfs"><source id="buwfs"></source></dfn>
      <dfn id="buwfs"><td id="buwfs"></td></dfn>
      <div id="buwfs"><small id="buwfs"></small></div>
      <dfn id="buwfs"><source id="buwfs"></source></dfn>
      1. <dfn id="buwfs"><td id="buwfs"></td></dfn>
        始創(chuàng)于2000年 股票代碼:831685
        咨詢熱線:0371-60135900 注冊有禮 登錄
        • 掛牌上市企業(yè)
        • 60秒人工響應(yīng)
        • 99.99%連通率
        • 7*24h人工
        • 故障100倍補償
        全部產(chǎn)品
        您的位置: 網(wǎng)站首頁 > 幫助中心>文章內(nèi)容

        如何處理Oracle的UNDO表空間所對應(yīng)的數(shù)據(jù)文件過大問題

        發(fā)布時間:  2012/8/27 16:55:13

        故障現(xiàn)象:在AIX查看df -g空間,查看到對應(yīng)的數(shù)據(jù)庫undo表空間達(dá)到90%多,下面處理表空間的數(shù)據(jù)文件過大問題

        --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'
         
         --數(shù)據(jù)文件為:/Oracle/oradata/undo/undotbs01.dbf
         
         --2 創(chuàng)建一個新的undo表空間,用來替換原來的undo表空間
        create      undo     tablespace    UNDOTBS2
        datafile     '/Oracle/oradata/log/undotbs02.dbf'
        size    10M    autoextend     on    maxsize    unlimited;

        --3 把新的undo表空間設(shè)置成數(shù)據(jù)庫的undo表空間
        alter     system     set undo_tablespace=UNDOTBS2     scope=both;

        --4 再次驗證數(shù)據(jù)庫的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'


        如果上面有狀態(tài)online的對象,可以查詢具體對象的sid,serial#

        --5.1 查看當(dāng)前是什么在使用這個回滾段
         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 根據(jù)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表空間及其系統(tǒng)的數(shù)據(jù)問題
        drop tablespace UNDOTBS1 including contents and datafiles;
        (在AIX系統(tǒng)中,雖然已經(jīng)刪除了系統(tǒng)所對應(yīng)的undo表空間的數(shù)據(jù)文件,但用df -g查看,該系統(tǒng)空間不能釋放。
        主要是由于Oracle的一個進(jìn)程在訪問該文件?梢詋ill Oracle訪問進(jìn)程,或者重啟數(shù)據(jù)庫后,即可釋放系統(tǒng)的空間。)
         
         
         --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;


        本文出自:億恩科技【mszdt.com】

        服務(wù)器租用/服務(wù)器托管中國五強!虛擬主機域名注冊頂級提供商!15年品質(zhì)保障!--億恩科技[ENKJ.COM]

      2. 您可能在找
      3. 億恩北京公司:
      4. 經(jīng)營性ICP/ISP證:京B2-20150015
      5. 億恩鄭州公司:
      6. 經(jīng)營性ICP/ISP/IDC證:豫B1.B2-20060070
      7. 億恩南昌公司:
      8. 經(jīng)營性ICP/ISP證:贛B2-20080012
      9. 服務(wù)器/云主機 24小時售后服務(wù)電話:0371-60135900
      10. 虛擬主機/智能建站 24小時售后服務(wù)電話:0371-60135900
      11. 專注服務(wù)器托管17年
        掃掃關(guān)注-微信公眾號
        0371-60135900
        Copyright© 1999-2019 ENKJ All Rights Reserved 億恩科技 版權(quán)所有  地址:鄭州市高新區(qū)翠竹街1號總部企業(yè)基地億恩大廈  法律顧問:河南亞太人律師事務(wù)所郝建鋒、杜慧月律師   京公網(wǎng)安備41019702002023號
          0
         
         
         
         

        0371-60135900
        7*24小時客服服務(wù)熱線