Tail-Log Backups (SQL Server)

This topic is relevant only for backup and restore of SQL Server databases that are using the full or bulk-logged recovery models.

A tail-log backup captures any log records that have not yet been backed up (the tail of the log) to prevent work loss and to keep the log chain intact. Before you can recover a SQL Server database to its latest point in time, you must back up the tail of its transaction log. The tail-log backup will be the last backup of interest in the recovery plan for the database.

Note

Not all restore scenarios require a tail-log backup. You do not need a tail-log backup if the recovery point is contained in an earlier log backup. Also, a tail-log backup is unnecessary if you are moving or replacing (overwriting) a database and do not need to restore it to a point of time after its most recent backup.

In this Topic:

  • Scenarios That Require a Tail-Log Backup

  • Tail-Log Backups That Have Incomplete Backup Metadata

  • Related Tasks

  • Related Content

Scenarios That Require a Tail-Log Backup

We recommend that you take a tail-log backup in the following scenarios:

  • If the database is online and you plan to perform a restore operation on the database, begin by backing up the tail of the log. To avoid an error for an online database, you must use the … WITH NORECOVERY option of the BACKUP Transact-SQL statement.

  • If a database is offline and fails to start and you need to restore the database, first back up the tail of the log. Because no transactions can occur at this time, using the WITH NORECOVERY is optional.

  • If a database is damaged, try to take a tail-log backup by using the WITH CONTINUE_AFTER_ERROR option of the BACKUP statement.

    On a damaged database backing up the tail of the log can succeed only if the log files are undamaged, the database is in a state that supports tail-log backups, and the database does not contain any bulk-logged changes. If a tail-log backup cannot be created, any transactions committed after the latest log backup are lost.

The following table summarizes the BACKUP NORECOVERY and CONTINUE_AFTER_ERROR options.

BACKUP LOG option

Comments

NORECOVERY

Use NORECOVERY whenever you intend to continue with a restore operation on the database. NORECOVERY takes the database into the restoring state. This guarantees that the database does not change after the tail-log backup.

The log is truncated unless the NO_TRUNCATE option or COPY_ONLY option is also specified.

Important

We recommend that you avoid using NO_TRUNCATE, except when the database is damaged.

CONTINUE_AFTER_ERROR

Use CONTINUE_AFTER_ERROR only if you are backing up the tail of a damaged database.

Note

When you use back up the tail of the log on a damaged database, some of the metadata ordinarily captured in log backups might be unavailable. For more information, see Tail-Log Backups That Have Incomplete Backup Metadata, later in this topic.

Tail-Log Backups That Have Incomplete Backup Metadata

Tail log backups capture the tail of the log even if the database is offline, damaged, or missing data files. This might cause incomplete metadata from the restore information commands and msdb. However, only the metadata is incomplete; the captured log is complete and usable.

If a tail-log backup has incomplete metadata, in the backupset table, has_incomplete_metadata is set to 1. Also, in the output of RESTORE HEADERONLY, HasIncompleteMetadata is set to 1.

If the metadata in a tail-log backup is incomplete, the backupfilegroup table will be missing most of the information about filegroups at the time of the tail-log backup. Most of the backupfilegroup table columns are NULL; the only meaningful columns are as follows:

  • backup_set_id

  • filegroup_id

  • type

  • type_desc

  • is_readonly

To create a tail-log backup, see Back Up the Transaction Log When the Database Is Damaged (SQL Server).

To restore a transaction log backup, see Restore a Transaction Log Backup (SQL Server).

[Top]

None.

[Top]

See Also

Reference

BACKUP (Transact-SQL)

RESTORE (Transact-SQL)

Concepts

Back Up and Restore of SQL Server Databases

Copy-Only Backups (SQL Server)

Transaction Log Backups (SQL Server)

Apply Transaction Log Backups (SQL Server)