estimate finish time for a maintenece job

  • hello friends,

    I have an index rebuild job and just kick started it now. is there any way to find out what would be the estimated completion time of this job?

    Thanks

  • The "sp_whoisactive" tool show % complete. Not sure how accurate it is.

  • Hi,

    See if this helps

    a. Find the session id of the dbcc command being run.

    b. Use the session id below -

    select percent_complete from sys.dm_exec_requests where session_id=xxx

    The percent complete returns the % of work completed for most of the tasks being performed.

    It can be used to find the backup, restore rollback % as well.

    You might want to return some othet columns in the query.

    Detailed read available at -

    Regards

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply