--刷新数据库监控信息:
exec dbms_stats.flush_database_monitoring_info;

--过期状态查看:stale_stats 状态是否为“YES”
select owner,table_name,object_type,stale_stats,last_analyzed 
from dba_tab_statistics
where owner=''
and table_name='';

--过期原因
select table_owner,table_name,inserts,updates,deletes,timestamp 
from all_tab_modifications
where table_owner=''
and table_name='';

相关文章:

  • 2022-12-23
  • 2022-03-06
  • 2021-08-28
  • 2021-09-15
  • 2022-12-23
  • 2022-12-23
  • 2021-12-02
  • 2021-05-29
猜你喜欢
  • 2022-12-23
  • 2021-10-10
  • 2022-01-20
  • 2022-12-23
  • 2022-01-10
  • 2022-12-23
  • 2022-12-23
相关资源
相似解决方案