Oracle 视图 ALL_SCHEDULER_DESTS 官方解释,作用,如何使用详细说明
  iDU31ygkXmx7 2023年11月21日 32 0

本站中文解释

ALL_SCHEDULER_DESTS视图是Oracle数据库中的数据字典视图,主要用于查看所有Scheduler调度程序创建的目标。

用法:

1. 查看所有oracle调度程序创建的目标:

select * from all_scheduler_dests;

2. 查看某个调度程序的所有目标:

select * from all_scheduler_dests where owner = ”;

官方英文解释

ALL_SCHEDULER_DESTS displays information about the destination objects for jobs accessible to the current user.

Related Views

  • DBA_SCHEDULER_DESTS displays information about all destination objects for jobs in the database.

  • USER_SCHEDULER_DESTS displays information about the destination objects for jobs owned by the current user. This view does not display the OWNER column.

Column Datatype NULL Description

OWNER

VARCHAR2(128)

NOT NULL

Owner of this destination object

DESTINATION_NAME

VARCHAR2(128)

NOT NULL

Name of this destination object

DESTINATION_TYPE

VARCHAR2(8)

Type of this destination object:

  • EXTERNAL

  • DATABASE

ENABLED

VARCHAR2(5)

Indicates whether this destination object is enabled (TRUE) or disabled (FALSE)

COMMENTS

VARCHAR2(4000)

Optional comment

See Also:

  • “DBA_SCHEDULER_DESTS”

  • “USER_SCHEDULER_DESTS”

【版权声明】本文内容来自摩杜云社区用户原创、第三方投稿、转载,内容版权归原作者所有。本网站的目的在于传递更多信息,不拥有版权,亦不承担相应法律责任。如果您发现本社区中有涉嫌抄袭的内容,欢迎发送邮件进行举报,并提供相关证据,一经查实,本社区将立刻删除涉嫌侵权内容,举报邮箱: cloudbbs@moduyun.com

  1. 分享:
最后一次编辑于 2023年11月21日 0

暂无评论

iDU31ygkXmx7