Oracle 视图 ALL_SCHEDULER_FILE_WATCHERS 官方解释,作用,如何使用详细说明
本站中文解释
ALL_SCHEDULER_FILE_WATCHERS 视图用于查看Oracle数据库中当前用户或其他用户创建的文件观察器的详细信息。
使用ALL_SCHEDULER_FILE_WATCHERS视图可以查 brief_info,schedule_name,schedule_owner,job_name,job_owner,watcher_name,watch_type,directory_path,enabled 等信息。
可以使用以下语法从 ALL_SCHEDULER_FILE_WATCHERS 视图检索数据:
SELECT * FROM all_scheduler_file_watchers where watcher_name = ‘文件观察器名’ ;
此查询将返回文件观察器所执行任务的详细信息,包括调度程序名称、调度程序所有者名称、作业名称、作业所有者名称、文件观察器名称、监视类型(文件与目录)、目录路径以及是否启用等信息。
官方英文解释
ALL_SCHEDULER_FILE_WATCHERS
displays information about the Scheduler file watch requests accessible to the current user.
Related Views
-
DBA_SCHEDULER_FILE_WATCHERS
displays information about all Scheduler file watch requests in the database. -
USER_SCHEDULER_FILE_WATCHERS
displays information about the Scheduler file watch requests owned by the current user. This view does not display theOWNER
column.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
|
Owner of the file watch request |
|
|
|
Name of the file watch request |
|
|
Indicates whether this file watch request is enabled ( |
|
|
|
Owner of the named destination object |
|
|
|
Name of the destination object |
|
|
|
|
Name of the directory path where the file will arrive |
|
|
|
Name or pattern specifying the files that need to be monitored |
|
|
Owner of the credential that should be used to authorize the file watch |
|
|
|
Name of the credential that should be used to authorize the file watch |
|
|
|
|
Minimum size of the file being monitored |
|
|
Time to wait before concluding that the file has stopped growing |
|
|
|
Time at which this file watcher was last modified |
|
|
|
Comments on the file watch request |
See Also:
-
“DBA_SCHEDULER_FILE_WATCHERS”
-
“USER_SCHEDULER_FILE_WATCHERS”