Oracle 视图 DBA_AUTO_MV_REFRESH_HISTORY 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_AUTO_MV_REFRESH_HISTORY用于显示特定自动聚合统计快照的历史刷新记录,其中包括下列信息:
– 主机名
– 自动统计键
– 自动统计集全局id
– 引用次数
– 创建日期
– 标志
– 最近刷新时间
– 上一次刷新时间
– 本次/上次刷新时间戳
– 引用表名
– 并行度
– 运行模式
– 已完成/已取消/已失败/错误
– 时间总计
使用此视图的最常见方式是用于查看指定的自动统计快照是否具有有效的历史刷新记录、何时发生最近的刷新、以及刷新在上一次和本次之间的持续时间。
例子:
查询有关指定自动统计快照35磁盘并行度的最近刷新信息:
SELECT host_name, last_refresh, last_refresh_time, refresh_timestamp_difference
FROM dba_auto_mv_refresh_history
WHERE auto_stat_key=35
AND refresh_parallelism=’Disk’;
官方英文解释
DBA_AUTO_MV_REFRESH_HISTORY
describes automatic materialized view refreshes.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the materialized view |
|
|
|
Name of the materialized view |
|
|
|
Date and time of the maintenance invocation |
|
|
|
Date and time the refresh started |
|
|
|
Date and time the refresh ended |
|
|
|
Duration of the refresh (in seconds) |
|
|
|
Status of the refresh. Possible values:
|
|
|
|
If an error occurred during the refresh, this column displays the error number, which corresponds to error code |
Note:
This view is available starting with Oracle Database 21c.