本站中文解释
Oracle 视图 USER_TAB_COL_STAT_MODELS 用于查看当前用户下建立的表、字段和自动生成的统计模型。它包含当前模式用户下建立的表、字段及自动生成的统计模型的信息,能帮助管理者和测试维护每一个表和字段对应的统计模型,还可以查看上次统计模型收集信息的时间。
使用方式:
可以通过以下两种方式来查看 USER_TAB_COL_STAT_MODELS 视图的相关信息:
1. 使用基本 sql 的 select 语句:
SELECT * FROM USER_TAB_COL_STAT_MODELS;
2. 使用 Oracle 数据字典视图:
SELECT *
FROM DBA_TAB_COL_STAT_MODELS;
官方英文解释
USER_TAB_COL_STAT_MODELS
describes real-time statistics models for all tables owned by the current user. Its columns (except for OWNER
) are the same as those in ALL_TAB_COL_STAT_MODELS
.
Real-time statistics models use machine learning algorithms to predict the number of distinct values (NDV) for table columns.
Note:
This view is available starting with Oracle Database 21c.
See Also:
“ALL_TAB_COL_STAT_MODELS”