Skip to content

Latest commit

 

History

History
85 lines (60 loc) · 2.81 KB

File metadata and controls

85 lines (60 loc) · 2.81 KB
title sp_delete_backuphistory (Transact-SQL)
description Reduces the size of the backup and restore history tables by deleting the entries for backup sets older than the specified date.
author markingmyname
ms.author maghan
ms.reviewer randolphwest
ms.date 06/23/2025
ms.service sql
ms.subservice system-objects
ms.topic reference
f1_keywords
sp_delete_backuphistory
sp_delete_backuphistory_TSQL
helpviewer_keywords
sp_delete_backuphistory
dev_langs
TSQL

sp_delete_backuphistory (Transact-SQL)

[!INCLUDE SQL Server]

Reduces the size of the backup and restore history tables by deleting the entries for backup sets older than the specified date. More rows are added to the backup and restore history tables after each backup or restore operation is performed; therefore, we recommend that you periodically execute sp_delete_backuphistory.

Note

The backup and restore history tables reside in the msdb database.

:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions

Syntax

sp_delete_backuphistory [ @oldest_date = ] oldest_date
[ ; ]

Arguments

[ @oldest_date = ] oldest_date

The oldest date retained in the backup and restore history tables. @oldest_date is datetime, with no default.

Return code values

0 (success) or 1 (failure).

Result set

None.

Remarks

sp_delete_backuphistory must be run from the msdb database and affects the following tables:

The physical backup files are preserved, even if all the history is deleted.

Permissions

[!INCLUDE msdb-execute-permissions]

Examples

The following example deletes all entries that are older than January 14, 2023, 12:00 A.M. in the backup and restore history tables.

USE msdb;
GO

EXECUTE sp_delete_backuphistory @oldest_date = '2023-01-14';
GO

Related content