|   | ![]() |
|
Backup Overview 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 Backup transaction log to a tape device and retain the existing log
Truncate transaction log
Differential backup A differential backup is a new method introduced in SQL Server 7.0. Differential backups can be one of the most powerful and time saving features you can implement in a backuip plan. A differential backup will create a baclup of all data that has changed since the last full database backup. This specifies the only restriction on a differential backup, a full database backup must be done first. Differential database backups will be very useful, especially for large databases, because they provide a more comprehensive intermediate portrait of the data than a transaction log backup. You can essentially look at a differential backup as the accumulation of all transaction log backups that could have been taken since the last full backup. You would normally perform a full backup, differential backups on a more frequent basis, and transaction log backps between each differential backup. When restoring a backup plan like this, you would restore the last full backup, restore the last differential backup, restore any transactions log since the last differential backup. Since all of the transaction logs previous to the last differential are included in that differential backup, they do not need to be restored and are only useful if you want to return the database to a previous point in time. A diffferential backup follows the same syntax as a full database backup with the exeception of adding an additional option.
Differential backup to an explicit disk device and begin a new backup set.
Differential backup to an undefined network disk device and overwrite the existing backups
Differential backup to a tape device and leave the tape in the drive
Differential backup multiple databases to a tape device, format the tape, and leave the tape in the drive for all but the last database
Backup Overview 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 |
All content on this site, except where noted, represents an original work of Michael R. Hotek and is protected by applicable copyright laws. The SQL Server FAQ is the sole work of Neil Pike. No page, portion of a page, or download may be used for commercial purposes in whole or in part without the express, written permission of the applicable author.