Determine if a backup is currently running

  • Hi All,

    Does any one know if there is a flag set some ware to determine if a full or a differential back is currently running on an database

     

    Thank You,

    Jim

  • I think you can query sysprocesses to see which database is being backed up.

    select dbid, cmd

    from master.dbo.sysprocesses

    where cmd like '%backup%'

    Greg

    Greg

  • Check

    msdb..backupset

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

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