create or replace view stats as 
select 'STAT...' || a.name name, b.value       
from v$statname a, v$mystat b      
where a.statistic# = b.statistic#     
union all     
select 'LATCH.' || name,  gets       
from v$latch     
union all     
select 'STAT...Elapsed Time', hsecs from v$timer;
创建查询统计信息视图

相关文章:

  • 2022-01-01
  • 2021-10-21
  • 2022-12-23
  • 2022-02-07
  • 2021-06-12
  • 2021-05-18
  • 2021-11-28
猜你喜欢
  • 2021-10-25
  • 2021-05-17
  • 2021-12-27
  • 2022-12-23
  • 2022-02-02
  • 2021-10-18
相关资源
相似解决方案