Backups -What point of the backup would be reflected in the restore ?

  • When you take a backup of a SQL Server database, does the SQL take the backup as from the end of the backup, or the start of the backup? We have a backup that takes four hours to run, and is used 24 x 7 x 365 days. If we restore would it reflect how it was at the start or end of the backup ?

  • Have a look at this:

    http://www.sqlskills.com/blogs/paul/2008/01/31/MoreOnHowMuchTransactionLogAFullBackupIncludes.aspx

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • The backup will as at the END of the backup (SQL Server actually appends to the backup file, any changes made since the start of the backup).

  • Excluding any transactions that were uncommitted at the end of the backup. (They'll be included in the backup file, but will be rolled back during the restore)

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass

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

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