Home

Restore state affects speed too

Prev Page Next Page
Introduction
Recovery models
Main backup types
Backing up the database files by copying
The transaction log
Transaction log restore sequence
Log sequence numbers
Truncating and shrinking the transaction log
Backing up the tail
Inside the transaction log
So, what's in a backup file?
Test: A full backup does not contain deleted data
Verifying backup files
Verifying backup files on a budget
Cumulative backups
Recovering individual tables
Backup and restore history details
Backup reads and writes
Speeding up backups
Backup speed details
Speeding up restores
Restore state affects speed too
Backup and restore rights
Log shipping
Log shipping in SQL Server 2000
Setting up log shipping using Enterprise Manager
Checking the set up
Failover
Log shipping in SQL Server 2005
Setting up log shipping using Management Studio
Checking the set up
Log shipping status report
Failover
Log shipping in SQL Backup
Using the CopyTool utility
Failover
3rd party backup applications
VDI
VDI versions
VDI errors
SQL Backup - beyond compression
Restoring a chain of transaction log backups
Restoring to the latest possible state
Backing up multiple databases
Backup retention
Making a copy of the backup file
Backup file naming conventions
Restoring the latest backup set
Network resilience
Encryption
Integrated database verification
Database file relocation
Improved backup retention
RESTORE HELP
High-availability group support
Common SQL Backup issues
Installation checklist
Setting up rights
Configuring service rights
Backup data
Hanging issues
Common backup and restore errors
Error 3201 - when performing a backup to a network share
Full database backup file is larger than database size
Error 3205 - Too many backup devices specified for backup or restore
Error 4305 - an earlier transaction log backup is required
Bringing a database that is in recovery or read-only mode online
Using bulk-logged recovery model but transaction log backup is still large
Error 14274 - unable to delete SQL Server Agent job
Error messages when restoring from different versions of SQL Server.
Pending
vdi error codes
Restore speed details
Help, my transaction log file is huge!
Mirror or log ship




Another factor that affects restore speed is the choice of the database state after a restore, in cases where recovery is not selected.  When you choose not to recover a database, usually because you want to apply further updates, you have a choice of using the NORECOVERY or STANDBY options. NORECOVERY leaves the database in recovery mode, allows you apply further updates, and prevents anyone from accessing it. STANDBY also leaves the database in recovery mode, allows you to apply further updates, but allows users read only access to the database.

When you use the STANDBY option, you provide a name for the undo file name.  This file contains the undo actions resulting from uncommitted transactions.  The more uncommitted transactions you have, the larger the file, and subsequently the longer the restore will take.

In the following example, 4 transaction log backups were made, each approximately 131 MB in size.  All backups contained only committed transactions, except for the third transaction log, which contained 32 MB of uncommitted transactions.  The following results were recorded:

- when restoring the transaction logs using the NORECOVERY option

speeduprestore_03

- when restoring the transaction logs using the STANDBY option

speeduprestore_04

Overall, restoring the transaction logs using the STANDBY option is slower compared to when the NORECOVERY option is used.  In addition, when there are uncommitted transactions, SQL Server needs to spend additional time creating the undo file.

The point then is, if you are restoring multiple transaction logs, and you want the database to be in read only mode, you should restore the transaction logs using the NORECOVERY option.  When all the logs have been applied, you can then switch the database to read-only mode e.g.

RESTORE DATABASE mydb WITH STANDBY = 'g:\data\mydb\mydb_und.dat'

In this way, you only incur the cost of creating the undo log once, instead of every time that a transaction log is restored, and speeds up the restore process.




Document history
11/21/2008    Initial release.    
 
Copyright 2008 - 2021 Yohz Ventures Sdn Bhd. All rights reserved.
All product and company names are trademarks or registered trademarks of their respective owners.