check database restore status sql script

Solutions on MaxInterview for check database restore status sql script by the best coders in the world

showing results for - "check database restore status sql script"
Violeta
30 Apr 2019
1SELECT r.session_id,r.command,CONVERT(NUMERIC(6,2),r.percent_complete)
2AS [Percent Complete],CONVERT(VARCHAR(20),DATEADD(ms,r.estimated_completion_time,GetDate()),20) AS [ETA Completion Time],
3CONVERT(NUMERIC(10,2),r.total_elapsed_time/1000.0/60.0) AS [Elapsed Min],
4CONVERT(NUMERIC(10,2),r.estimated_completion_time/1000.0/60.0) AS [ETA Min],
5CONVERT(NUMERIC(10,2),r.estimated_completion_time/1000.0/60.0/60.0) AS [ETA Hours],
6CONVERT(VARCHAR(1000),(SELECT SUBSTRING(text,r.statement_start_offset/2,
7CASE WHEN r.statement_end_offset = -1 THEN 1000 ELSE (r.statement_end_offset-r.statement_start_offset)/2 END)
8FROM sys.dm_exec_sql_text(sql_handle))) AS [SQL]
9FROM sys.dm_exec_requests r WHERE command IN ('RESTORE DATABASE','BACKUP DATABASE')
10