Oracle 视图 V$ADVISOR_PROGRESS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图V$ADVISOR_PROGRESS报告Advisor程序运行的进度。
用途:
V$ADVISOR_PROGRESS可以用来监控Advisor的运行进度,以及查看它的执行结果。这种视图还可以捕获Advisor程序的调用结果,因此,我们可以使用它来检查某一个任务项是否已经完成执行。
使用方法:
V$ADVISOR_PROGRESS可以通过使用SQL查询去查看。示例:
SELECT adp.task_name, adp.status, adp.start_time, adp.end_time FROM v$advisor_progress adp;
官方英文解释
V$ADVISOR_PROGRESS
displays information about the progress of advisor execution.
Column | Datatype | Description |
---|---|---|
|
| Session ID |
|
| Session serial number |
|
| Oracle user name |
|
| Operation name |
|
| Advisor name |
|
| Task ID |
|
| Description of the target of the advisor |
|
| Amount of work done so far |
|
| Total work to be done |
|
| Units that the work is measured in |
|
| Benefit obtained so far |
|
| Estimate of maximum benefit that could be obtained |
|
| Number of findings so far |
|
| Number of recommendations so far |
|
| Estimate of time remaining for the completion of the task (in seconds) |
|
| Start time of the task |
|
| Last time progress was posted |
|
| Elapsed time so far |
|
| Value of the advisor-specific metric |
|
| Description of the advisor-specific metric |
|
| Type of the last execution. This information is optional for single-execution tasks. |
|
| The ID of the container to which the data pertains. Possible values include:
|
编辑:一起学习网
标签:视图,进度,程序,还可以,我们可以