Oracle 视图 USER_MVREF_STATS_PARAMS 官方解释,作用,如何使用详细说明
本站中文解释
视图
USER_MVREF_STATS_PARAMS视图提供有关用户定义索引、唯一键和外键的信息,其中包括每个索引的分布,每个键的分布,是否记录统计信息以及收集的统计情况。
该视图可以帮助DBA了解哪些唯一键或索引具有不均一性,并关联到合适的表中的列。这是确定哪些字段作为索引的键值,以及收集统计信息的主要来源。
使用方法:
1. 使用SELECT语句检索USER_MVREF_STATS_PARAMS视图中的数据:
SELECT *
FROM USER_MVREF_STATS_PARAMS;
2. 从中选择具体的表:
SELECT *
FROM USER_MVREF_STATS_PARAMS
WHERE table_name = ‘表名’;
3. 检查该表的是否有索引:
SELECt *
FROM USER_MVREF_STATS_PARAMS
WHERE indextype = ‘INDEX’;
官方英文解释
USER_MVREF_STATS_PARAMS
displays the refresh statistics properties associated with each materialized view accessible to the current user. These properties can be modified with the DBMS_MVIEW_STATS.SET_MVREF_STATS_PARAMS
procedure.
Its columns are the same as those in DBA_MVREF_STATS_PARAMS
.
See Also:
“DBA_MVREF_STATS_PARAMS”