19 June 2009 12:59
tonyrogerson
Determining Backup or Restore Percent Complete in SQL Server 2008 and SQL Server 2005
If you want to see how far along your restore or backup is then you can do this...
select percent_complete
from sys.dm_exec_requests
where session_id = 53
This is in addition to the STATS = n option on the BACKUP/RESTORE commands.
Filed under: SQL Server, Support