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

  • 相关阅读:
    linux shell创建目录、遍历子目录
    linux shell写入单行、多行内容到文件
    如何起个好名字
    linux shell编程中的数组定义、遍历
    详解浏览器分段请求基础——Range,助你了解断点续传基础
    实现一个大文件上传和断点续传
    localStorage设置过期时间
    Python3 __slots__
    Nginx 流量统计分析
    argparse简要用法总结
  • 原文地址:https://www.cnblogs.com/Snowfun/p/7809041.html
Copyright © 2011-2022 走看看