iyoume2008

--sys用户执行以下sql语句,查看job的运行日志
select t.owner,
       t.job_name,
       t.status,
       to_char(t.actual_start_date, \'yyyy-mm-dd hh24:mi:ss\'),
       t.additional_info,
       t.error#
  from dba_scheduler_job_run_details t
 where t.job_name = \'JOB_BOOK1\'  --job名字
 order by log_date desc;

分类:

技术点:

相关文章:

  • 2021-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-29
  • 2022-01-21
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-11-13
  • 2021-07-21
  • 2022-12-23
  • 2022-12-23
  • 2021-04-28
  • 2021-07-13
相关资源
相似解决方案