UNDO還原表空間使用率馬上就達到100%了,如何清理?
UNDO還原表空間使用率馬上就達到100%了,目前也沒(méi)有多少空間可以擴容,如何能清理一下UNDO表空間呢?
還原表空間沒(méi)有可用空間,會(huì )不會(huì )影響數據庫使用??謝謝
rollingpig 發(fā)表于 2005-10-11 09:55
UNDO還原表空間使用率馬上就達到100%了,如何清理?
你的undo_retention設位多少
show parameter undo_retention
可以的話(huà),降低這個(gè)值,可以達到少使用還原表空間的目的。
如果非得清理undo tablespace
可以采用如下步驟
1。新建一個(gè)undo_tablespace
2.alter system set undo_tablespace = new_undo_tbs
3.drop old undo_tablespace
varchar2aix 發(fā)表于 2005-10-11 10:03
UNDO還原表空間使用率馬上就達到100%了,如何清理?
是3個(gè)小時(shí)!如果減小這個(gè)數的話(huà),會(huì )不會(huì )立即清除??
另外,UNDO表空間滿(mǎn)的話(huà),會(huì )不會(huì )影響數據庫使用????
macrodba 發(fā)表于 2005-10-11 17:17
UNDO還原表空間使用率馬上就達到100%了,如何清理?
如果滿(mǎn),那影響很大的
天涯明月刀 發(fā)表于 2005-10-11 18:05
UNDO還原表空間使用率馬上就達到100%了,如何清理?
show parameter undo_retention
減小
或者增加undo表空間
sshd 發(fā)表于 2005-10-12 13:07
UNDO還原表空間使用率馬上就達到100%了,如何清理?
add datafiles to this tablespace or alter the existing ones to make them auto extensible.