Oracle 视图 ALL_TAB_STATS_HISTORY 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图ALL_TAB_STATS_HISTORY提供的是上一次收集的所有表的表统计信息,这些统计信息可以基于特定时间段收集。该视图仅在每次收集到新相关表统计信息后才会更新,因此可以帮助DBA们更好地检查表大小和数据表最近使用状况。使用ALL_TAB_STATS_HISTORY视图可以知晓哪些表有变化、每条记录有多少行和每列有多少不同值,这使得DBA们可以更好地优化表空间以及基于表趋势预测表的未来发展状况。
要使用此视图,DBA可以通过在SELECT子句中指定表的当前名称和时间戳,以查询特定时间点之前收集的统计信息。例如,以下语句查询2015-01-21 08:00之前收集的表“MyTable”的历史统计信息:
SELECT * FROM all_tab_stats_history
WHERE table_name = ‘MyTable’
AND timestamp
官方英文解释
ALL_TAB_STATS_HISTORY
provides a history of table statistics modifications for all tables accessible to the current user.
Related Views
-
DBA_TAB_STATS_HISTORY
provides a history of table statistics modifications for all tables in the database. -
USER_TAB_STATS_HISTORY
provides a history of table statistics modifications for all tables owned by the current user.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
Owner of the object |
|
|
|
Name of the table |
|
|
|
Name of the partition |
|
|
|
Name of the subpartition |
|
|
|
Time at which the statistics were updated |
See Also:
-
“DBA_TAB_STATS_HISTORY”
-
“USER_TAB_STATS_HISTORY”