undo表空间
undo暴增后查询思路
1.查询undo active使用状态
select tablespace_name, status, round( sum( bytes ) / 1048576, 2 ) mb,
count(*) extent_count
from dba_undo_extents
group by tablespace_name, status
order by tablespace_name, status;
UNEXPIRED已经释放,在保留期内。无需手动处理,在undo表空间紧张时,un
原创
2021-03-24 09:01:00 ·
2778 阅读 ·
0 评论