Oracle 视图 DBA_AUTOTASK_WINDOW_CLIENTS 官方解释,作用,如何使用详细说明
本站中文解释
DBA_AUTOTASK_WINDOW_CLIENTS是Oracle的一个数据字典视图,用于获取系统中有关自动任务窗口客户机的信息。
这个视图中都包含哪些信息?
DBA_AUTOTASK_WINDOW_CLIENTS视图中包含以下信息:
WINDOW_NAME:自动任务窗口的名称;
CLIENT_NAME:自动任务窗口客户机的名称;
ENABLED:指示任务窗口客户机是否被激活;
LAST_RUN_DURATION:客户机上次运行的持续时间;
NEXT_RUN_DATE:客户机被调度的下一个运行日期;
LAST_RUN_DATE:客户机上次被调度的运行日期;
NEXT_RUN_DURATION:客户机下一次被调度的运行时长;
LAST_STATUS:客户机上次运行的状态;
WINDOW_TASK:与客户机分配的任务名称。
如何使用?
可以使用以下SQL语句查询自动任务窗口客户机的信息:
SELECT * FROM DBA_AUTOTASK_WINDOW_CLIENTS;
官方英文解释
DBA_AUTOTASK_WINDOW_CLIENTS
displays the windows that belong to MAINTENANCE_WINDOW_GROUP
, along with the Enabled or Disabled status for the window for each maintenance task.
DBA_AUTOTASK_WINDOW_CLIENTS
is primarily used by Enterprise Manager.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Name of the maintenance window |
|
|
Next scheduled window open time unless the window is disabled |
|
|
|
Indicates whether the window is currently active (open) ( |
|
|
|
Status of the automated maintenance task subsystem:
|
|
|
|
Status of optimizer statistics gathering:
|
|
|
|
Status of Segment Advisor:
|
|
|
|
Status of SQL Tuning Advisor:
|