zoukankan      html  css  js  c++  java
  • sqlserver job 执行时间

    select instance_id,jh.run_date,jh.job_id,jh.step_name,
        case jh.run_status
            when 0 then 'failed'
            when 1 then 'Succeeded'
            when 2 then 'Retry'
            when 3 then 'Canceled'
        end as run_status
        
        ,left(jh.run_time,len(jh.run_time)-2) as '开始时间' 
        ,left(run_duration,len(run_duration)-2) as '',right(run_duration,2) as '',jh.run_duration,jh.run_time
    from msdb.dbo.sysjobhistory jh with(nolock)
    where job_id=N'1C8F16AC-5C37-4D76-883F-CD318A9E19D6' and 
    step_name='OUT2SAP_Without_PR' and jh.run_status=1
    order by instance_id desc
    select * from (select instance_id,jh.run_date,jh.job_id,jh.step_name,
        case jh.run_status
            when 0 then 'failed'
            when 1 then 'Succeeded'
            when 2 then 'Retry'
            when 3 then 'Canceled'
        end as run_status
        
        ,left(jh.run_time,len(jh.run_time)-2) as '开始时间' 
        ,left(run_duration,len(run_duration)-2) as '',right(run_duration,2) as '',jh.run_duration,jh.run_time
    from msdb.dbo.sysjobhistory jh with(nolock)
    where job_id=N'1C8F16AC-5C37-4D76-883F-CD318A9E19D6' and 
    step_name='OUT2SAP_Without_PR' and jh.run_status=1
    --order by instance_id desc
    
    union all  
    select instance_id,jh.run_date,jh.job_id,jh.step_name,
        case jh.run_status
            when 0 then 'failed'
            when 1 then 'Succeeded'
            when 2 then 'Retry'
            when 3 then 'Canceled'
        end as run_status
        
        ,left(jh.run_time,len(jh.run_time)-2) as '开始时间' 
        ,left(run_duration,len(run_duration)-2) as '',right(run_duration,2) as '',jh.run_duration,jh.run_time
    from msdb.dbo.sysjobhistory jh with(nolock)
    where --job_id=N'1C8F16AC-5C37-4D76-883F-CD318A9E19D6' and 
    step_name='AutoOut2Sap_Without_SO' and jh.run_status=1
    --order by instance_id desc
    
    ) A order by instance_id desc

  • 相关阅读:
    Spring Boot(十一):Spring Boot 中 MongoDB 的使用
    你干啥的?Lombok
    面试必备的分布式事物方案
    Shiro框架详解 tagline
    List中的ArrayList和LinkedList源码分析
    计算机内存管理介绍
    Struts2.5 伪静态的配置
    Hibernate——hibernate的配置测试
    Struts2.5的的环境搭建及跑通流程
    Jsp敏感词过滤
  • 原文地址:https://www.cnblogs.com/Snowfun/p/7809041.html
Copyright © 2011-2022 走看看