Skip to content

Latest commit

 

History

History
46 lines (30 loc) · 2.18 KB

File metadata and controls

46 lines (30 loc) · 2.18 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic helpviewer_keywords
Outdated Backup
Outdated Backup
VanMSFT
vanto
12/15/2023
sql
security
reference
Best Practices [Database Engine]

Outdated backup

[!INCLUDE SQL Server]

This rule checks that a database has recent backups. Scheduling regular backups is important for protecting your databases against data loss from many different failures. The appropriate frequency for backing up data depends on the recovery model of the database, on business requirements about potential data loss, and on how frequently the database is updated. In a frequently updated database, the work-loss exposure increases fairly quickly between backups.

Best practices recommendations

We recommend that you perform backups frequently enough to protect databases against data loss.

The simple recovery model and full recovery model both require data backups. For either recovery model, you can supplement your full backups with differential backups to efficiently reduce the risk of data loss.

For a database that uses the full recovery model, we recommend that you take frequent log backups. For a production database that contains important data, log backups would typically be taken every one to fifteen minutes.

Note

The recommended method for scheduling backups is a database maintenance plan.

For more information

Back up and restore: System databases (SQL Server)

Recovery Models (SQL Server)

Create a Differential Database Backup (SQL Server)

Create a Full Database Backup

Maintenance plans

Transaction log backups (SQL Server)

Related content