统计信息的过期原因

select table_owner, table_name, inserts, updates, deletes, timestamp
from all_tab_modifications
where table_owner = 'SCOTT'
and table_name = 'TEST';
原文地址:https://www.cnblogs.com/liang545621/p/12611918.html