Oracle 视图 ALL_SCHEDULER_GROUPS 官方解释,作用,如何使用详细说明
本站中文解释
Oracle视图ALL_SCHEDULER_GROUPS是Oracle数据库中提供的一个视图,用于显示数据库中可用的调度程序组信息。这些调度程序组的信息包括SCHEDULER_GROUP_ID,SCHEDULER_GROUP_NAME,IS_ENABLED和IS_GLOBAL等。ALL_SCHEDULER_GROUPS视图可以用于查看可用的调度组以及它们是否可用,并且它们是本地还是全局调度程序组。
要使用ALL_SCHEDULER_GROUPS视图,可以通过SQL语句执行以下查询:
SELECT * FROM ALL_SCHEDULER_GROUPS;
这将返回所有可用的调度程序组信息,这样您就可以知道哪些是可用的,哪些是不可用的以及它们是本地还是全局调度程序组。
官方英文解释
ALL_SCHEDULER_GROUPS
displays information about the Scheduler object groups accessible to the current user.
Related Views
-
DBA_SCHEDULER_GROUPS
displays information about all Scheduler object groups in the database. -
USER_SCHEDULER_GROUPS
displays information about the Scheduler object groups owned by the current user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the group |
|
|
|
Name of the group |
|
|
Type of object contained in the group:
|
|
|
|
Indicates whether the group is enabled ( |
|
|
|
Number of members in this group |
|
|
|
An optional comment about this group |
See Also:
-
“DBA_SCHEDULER_GROUPS”
-
“USER_SCHEDULER_GROUPS”