程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 數據庫知識 >> Oracle數據庫 >> 關於Oracle數據庫 >> 解決Oracle下的undo空間過大的問題

解決Oracle下的undo空間過大的問題

編輯:關於Oracle數據庫

    -- 假如undo表空間undotbs不能釋放空間,重建之

    -- 創建備用undo表空間
    create undo tablespace newundotbs datafile '$ORA_DATA/newundotbs01.dbf' size 1000m
    /   
    -- 切換undo表空間
    alter system set undo_tablespace=newundotbs scope=spfile
    /
    shutdown immediate
    /
    startup
    /
    -- drop原表空間
    drop tablespace undotbs including contents and datafiles
    /
    -- 創建原undo表空間
    create undo tablespace undotbs datafile '$ORA_DATA/undotbs01.dbf' size 1000m
    /
    -- 切換undo表空間
    alter system set undo_tablespace=undotbs scope=spfile
    /
    -- 關閉重起並把備用undo表空間drop
    shutdown immediate
    /
    startup
    /
    drop tablespace newundotbs including contents and datafiles
    /

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved