--1.监控undo空间情况
select tablespace_name,round(sum(bytes)/(1024*1024),2) free_space
  from dba_free_space
 where tablespace_name='UNDOTBS1'
 group by tablespace_name;

TABLESPACE_NAME FREE_SPACE
------------------------------ ----------
UNDOTBS1 167.44

--2.监控临时段的使用情况
select sum(nvl(blocks,0))*8/1024 Msize from v$sort_usage;

 

相关文章:

  • 2021-07-22
  • 2022-02-02
  • 2022-12-23
  • 2022-02-14
  • 2022-01-22
  • 2021-06-15
  • 2021-11-23
  • 2021-09-25
猜你喜欢
  • 2022-12-23
  • 2021-06-20
  • 2022-12-23
  • 2021-11-26
  • 2021-08-16
  • 2022-12-23
  • 2021-10-21
相关资源
相似解决方案