Oracle 视图 DBA_ADVISOR_USAGE 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图DBA_ADVISOR_USAGE包含了当前用户数据库实例中准备和执行过的DBMS_ADVISOR任务的详细信息,以及与其任务有关的参数和运行结果。
此视图通常用于审查Advisor任务的运行情况。它的信息可以用来了解DBMS_ADVISOR的用户怎样使用Advisor,以及它们的运行时间,帮助跟踪Advisor任务的使用情况,甚至可以查看每次任务的输出结果。
例如:要查询配置索引建议器任务(TASK_ID为1234)的相关信息,可以使用以下SQL语句:
SELECT * FROM DBA_ADVISOR_USAGE WHERE TASK_ID = 1234;
该语句将获取与配置索引任务有关的详细信息,包括任务参数和运行结果,以及结果报告的存储路径。
官方英文解释
DBA_ADVISOR_USAGE
displays the usage information for each type of advisor in the database.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Type of the advisor |
|
|
|
Name of the advisor |
|
|
|
Date of the last execution |
|
|
|
Cumulative number of executions |
|
|
|
Cumulative number of reports |
|
|
Time of the first report |
|
|
|
Time of the last report |