Oracle 视图 DBA_AUTOTASK_SETTINGS 官方解释,作用,如何使用详细说明

本站中文解释

Oracle视图DBA_AUTOTASK_SETTINGS是一个数据字典视图,显示当前数据库中所有自动任务的设置情况。可以使用这个视图来查看某个数据库实例上已经设置的自动任务,查看它们的调度模式、调度时间、任务名称等等。

使用这个视图可以方便的查看自动任务的基本信息,比如任务名称,当前模式,上次运行开始时间,推迟次数等。它也可以帮助用户分析自动任务当前的状态和操作,以便及时调整自动任务。

官方英文解释

DBA_AUTOTASK_SETTINGS displays the settings for automated tasks.

Column Datatype NULL Description

DBID

NUMBER

NOT NULL

Identifier of the database used by the task

TASK_ID

NUMBER

NOT NULL

Identifier of the task

TASK_NAME

VARCHAR2(64)

Name of the task

INTERVAL

NUMBER

The time interval between task invocations (in seconds)

MAX_RUN_TIME

NUMBER

Maximum run time allowed for the task before it is stopped (in seconds)

ENABLED

VARCHAR2(5)

Indicates whether the task is enabled (TRUE) or not (FALSE)

Note:

This view is available starting with Oracle Database 21c.


数据运维技术 » Oracle 视图 DBA_AUTOTASK_SETTINGS 官方解释,作用,如何使用详细说明