When I backup or restore a database using MS SQL Server Management Studio, I get a visual indication of how far the process has progressed, and thus how much longer I still
If you know the sessionID then you can use the following:
SELECT * FROM sys.dm_exec_requests WHERE session_id = 62
Or if you want to narrow it down:
SELECT command, percent_complete, start_time FROM sys.dm_exec_requests WHERE session_id = 62