码迷,mamicode.com
首页 > 数据库 > 详细

SQL Server2008查询备份进度

时间:2014-12-24 18:27:08      阅读:226      评论:0      收藏:0      [点我收藏+]

标签:command   convert   

方法一:

select command

   ,percent_complete

   ,running_time=convert(varchar,((datediff(s,start_time,getdate()))/3600))+‘ hour, ‘

                +convert(varchar,((datediff(s,start_time,getdate()))%3600/60))+‘ min, ‘

                +convert(varchar,((datediff(s,start_time,getdate()))%60))+‘ sec‘

   ,est_time_to_go=convert(varchar,(estimated_completion_time/1000)/3600)+‘ hour, ‘

                  +convert(varchar,(estimated_completion_time/1000)%3600/60)+‘ min, ‘

                  +convert(varchar,(estimated_completion_time/1000)%60)+‘ sec‘

   ,start_time=convert(char(16),start_time,120)

   ,est_completion_time=convert(char(16),dateadd(second,estimated_completion_time/1000,getdate()),120)

   

   ,s.text

   from sys.dm_exec_requests r

   cross apply sys.dm_exec_sql_text(r.sql_handle) s

   where r.command in (‘BACKUP DATABASE‘,‘RESTORE DATABASE‘,‘BACKUP LOG‘,‘RESTORE LOG‘,‘DbccFilesCompact‘,‘DbccSpaceReclaim‘)


方法二:

USE master
GOSELECT CASE WHEN ((estimated_completion_time/1000)/3600) < 10 THEN ‘0‘ +
CONVERT(VARCHAR(10),(estimated_completion_time/1000)/3600)ELSE CONVERT(VARCHAR(10),(estimated_completion_time/1000)/3600)END + ‘:‘ + 
CASE WHEN ((estimated_completion_time/1000)%3600/60) < 10 THEN ‘0‘ +
CONVERT(VARCHAR(10),(estimated_completion_time/1000)%3600/60) 
ELSE CONVERT(VARCHAR(10),(estimated_completion_time/1000)%3600/60)END  + ‘:‘ + 
CASE WHEN ((estimated_completion_time/1000)%60) < 10 THEN ‘0‘ +
CONVERT(VARCHAR(10),(estimated_completion_time/1000)%60)ELSE CONVERT(VARCHAR(10),(estimated_completion_time/1000)%60)END AS [Time Remaining],
percent_complete,
* FROM sys.dm_exec_requestsWHERE percent_complete > 0


SQL Server2008查询备份进度

标签:command   convert   

原文地址:http://5634716.blog.51cto.com/5624716/1595168

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!