查询正在运行的job信息

查询正在运行的job信息

 

select
t.job,
(select t_j.what from user_jobs t_j where t_j.job=t.job),
t.* from dba_jobs_running t

 

 

 

select t.job, (select t_j.what from user_jobs t_j where t_j.job=t.job), t.* from dba_jobs_running t

 

你可能感兴趣的:(job)