Oracle 视图 DBA_AUTOTASK_SCHEDULE_CONTROL 官方解释,作用,如何使用详细说明
本站中文解释
表
Oracle视图 DBA_AUTOTASK_SCHEDULE_CONTROL 是Oracle数据库提供的内置视图。允许用户检索和查看关于计划任务调度控制参数的信息。
此视图定义了以下列:
•STATUS:此列显示控制参数是否为“等待”或“已关闭”状态。
•DISABLE_OPTIONS:此列显示任务调度是否被禁用,如果禁用则显示“忙碌指标”的值,如果未禁用,则显示“0”。
使用方法:
查询所有记录:
SELECT * FROM DBA_AUTOTASK_SCHEDULE_CONTROL;
查询控制参数的状态:
SELECT STATUS FROM DBA_AUTOTASK_SCHEDULE_CONTROL;
查询任务调度是否被禁用:
SELECT DISABLE_OPTIONS FROM DBA_AUTOTASK_SCHEDULE_CONTROL WHERE STATUS = ‘ENABLED’;
官方英文解释
DBA_AUTOTASK_SCHEDULE_CONTROL
displays the status of automated tasks.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Identifier of the database used by the task |
|
|
|
Identifier of the task |
|
|
|
Instance number for the task |
|
|
|
Name of the task |
|
|
|
Status of the task Possible values:
|
|
|
|
Elapsed time of the last execution (in seconds) |
|
|
|
Last time the task was scheduled to execute |
|
|
|
Oracle RAC instance number for the database instance used for the last execution of the task |