zl程序教程

您现在的位置是:首页 >  数据库

当前栏目

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

Oracle官方 使用 如何 详细 作用 说明 解释
2023-06-13 09:11:10 时间
本站中文解释

ALL_SCHEDULER_RUNNING_CHAINS 视图是 Oracle 的一个数据字典视图。它显示有关正在运行的管道的信息,其中包括此管道的状态、管道步骤的状态,以及由此管道创建的作业的信息。索引的主要由CHAIN_NAME,SESSION_ID,INSTANCE_ID和OWNER来识别,其他两列CHAIN_TYPE和START_TIME也可以用来识别索引。

用法:

1、以下查询语句用于检索正在运行的链信息:

SELECT *
FROM all_scheduler_running_chains;

2、可以用以下语句检索特定用户的正在运行的链信息:

SELECT *
FROM all_scheduler_running_chains
WHERE owner = 用户名

官方英文解释 ALL_SCHEDULER_RUNNING_CHAINS displays information about the chain steps of the running chains accessible to the current user (that is, those chains that the user has ALTER privileges for). In the case of nested chains, this view also enables you to traverse the hierarchy of the chain with a SQL statement that contains a CONNECT BY clause linking up the JOB_SUBNAME and STEP_JOB_SUBNAME columns.

DBA_SCHEDULER_RUNNING_CHAINS displays information about the chain steps of all running chains in the database.


USER_SCHEDULER_RUNNING_CHAINS displays information about the chain steps of the running chains owned by the current user. This view does not display the OWNER column.


Indicates whether the chain step should be paused after running (TRUE) or not (FALSE)


Indicates whether the chain step should be paused before running (TRUE) or not (FALSE)


Indicates whether the chain step will be restarted on database recovery (TRUE) or not (FALSE)


Indicates whether the chain step will be restarted on application failure (TRUE) or not (FALSE)


我想要获取技术服务或软件
服务范围:MySQL、ORACLE、SQLSERVER、MongoDB、PostgreSQL 、程序问题
服务方式:远程服务、电话支持、现场服务,沟通指定方式服务
技术标签:数据恢复、安装配置、数据迁移、集群容灾、异常处理、其它问题

本站部分文章参考或来源于网络,如有侵权请联系站长。
数据库远程运维 Oracle 视图 ALL_SCHEDULER_RUNNING_CHAINS 官方解释,作用,如何使用详细说明