Oracle 视图 ALL_SCHEDULER_JOB_RUN_DETAILS 官方解释,作用,如何使用详细说明
本站中文解释
ALL_SCHEDULER_JOB_RUN_DETAILS视图提供了最近定期任务运行的所有详细信息。该视图包含定期任务的步骤名称、开始和结束时间、实际估计运行时间、参数等数据。
使用Oracle视图ALL_SCHEDULER_JOB_RUN_DETAILS可以获取以下数据:
– 步骤:可以通过在JOB_NAME和JOB_SUB_NAME列中搜索您的特定Job或步骤名称来查找Job或步骤
– 运行否:在运行完Job或步骤后,在失败、成功或取消列中查看它是否被运行
– 时间:通过组合查询来获得定期任务的执行次数,启动时间,完成时间和执行持续时间
– 参数:可以在Args、Actual_Start_Date、Start_Date和End_Date列组合查询来查看定期任务的自定义参数
官方英文解释
ALL_SCHEDULER_JOB_RUN_DETAILS
displays log run details for the Scheduler jobs accessible to the current user.
Related Views
DBA_SCHEDULER_JOB_RUN_DETAILS
displays log run details for all Scheduler jobs in the database.USER_SCHEDULER_JOB_RUN_DETAILS
displays log run details for the Scheduler jobs owned by the current user.
Column | Datatype | NULL | Description |
---|---|---|---|
|
|
| Unique identifier of the log entry (foreign key of the |
|
| Date of the log entry | |
|
| Owner of the Scheduler job | |
|
| Name of the Scheduler job | |
|
| Subname of the Scheduler job (for a chain step job) | |
|
| Status of the job run | |
|
| Error number in the case of an error | |
|
| Requested start date of the job run | |
|
| Actual date on which the job was run | |
|
| Duration of the job run | |
|
| Identifier of the instance on which the job was run | |
|
| Session identifier of the job run | |
|
| Process identifier of the slave on which the job was run | |
|
| Amount of CPU used for the job run | |
|
| Owner of the credential used for this remote job run | |
|
| Name of the credential used for this remote job run | |
|
| Owner of the destination object used in this remote job run; NULL if no object used | |
|
| Destination for a remote job operation | |
|
| Additional information on the job run, if applicable | |
|
| Error messages generated by this job run | |
|
| Output messages generated by this job run | |
|
| Error messages generated by this job run in a binary format | |
|
| Binary output messages generated by this job run |
See Also:
“DBA_SCHEDULER_JOB_RUN_DETAILS”
“USER_SCHEDULER_JOB_RUN_DETAILS”
编辑:编程语言
标签:步骤,视图,时间,组合,参数