Oracle 视图 DBA_AUTO_MV_ANALYSIS_ACTIONS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_AUTO_MV_ANALYSIS_ACTIONS的用途是显示执行的基于MV的自动分析操作及其历史信息。
此视图包含每次从发布之后执行的自动MV分析操作的详细信息,如果支持,还包括其他自动维护任务的统计信息。
可以使用此视图来监测由自动基于MV的分析执行的任务,以及这些任务的执行时间和结果,以及在重新分析时发生的变化情况。
对于查询视图,可以使用多个条件来提取详细信息,例如:执行时间、成功执行的情况、历史变更情况、失败的情况等。
还可以使用DBMS_AUTO_MV_ANALYZE.CLEAR_ANALYZE_HISTORY存储过程来删除特定类型的历史信息。
官方英文解释
DBA_AUTO_MV_ANALYSIS_ACTIONS
displays information about analysis and tuning activities associated with automatic materialized views.
Each action is specified by the COMMAND
and attribute (ATTR1
through ATTR6
) columns. Each command defines how the attribute columns will be used.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
| Owner of the task |
|
|
| Identifier of the task |
|
|
| Name of the task The value of this column is always |
|
|
| The name of the task execution with which this entry (row) is associated |
|
|
| Recommendation associated with the action |
|
|
| Unique identifier for the action |
|
|
| Object associated with the action |
|
|
| Command to be executed See Also: |
|
|
| ID of the command to be executed See Also: |
|
|
| Advisor-specific flags |
|
|
| Parameters defining the command |
|
|
| Parameters defining the command |
|
|
| Parameters defining the command |
|
|
| Parameters defining the command |
|
|
| Parameters defining the command; to be used if the text is significantly large (for example, a SQL statement defining a materialized view) |
|
|
| Parameters defining the command; to be used if the text is significantly large (for example, a SQL statement defining a materialized view) |
|
|
| General numeric attribute |
|
|
| General numeric attribute |
|
|
| General numeric attribute |
|
|
| General numeric attribute |
|
|
| General numeric attribute |
|
|
| Message associated with the action |
|
|
| A value of |
|
|
| Result status. Possible values:
|
|
|
| Time at which result status was last modified |
|
|
| Result message text |
Note:
This view is available starting with Oracle Database 21c.
编辑:编程语言
标签:视图,情况,详细信息,执行时间,可以使用