Click to Rate and Give Feedback
TechNet
TechNet Library
SQL Server
SQL Server 2005
 sp_delete_backuphistory (Transact-S...
Community Content
In this section
Statistics Annotations (0)
Collapse All/Expand All Collapse All
SQL Server 2005 Books Online (November 2008)
sp_delete_backuphistory (Transact-SQL)

Reduces the size of the backup and restore history tables by deleting the entries for backup sets older than the specified date. Additional 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.

ms188328.note(en-US,SQL.90).gifNote:
The backup and restore history tables reside in the msdb database.

Topic link icon Transact-SQL Syntax Conventions

sp_delete_backuphistory [ @oldest_date = ] 'oldest_date' 
[ @oldest_date = ] 'oldest_date'

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

0 (success) or 1 (failure)

None

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

Requires membership in the sysadmin fixed server role, but permissions can be granted to other users.

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

USE msdb;
GO
EXEC sp_delete_backuphistory '08/20/98';
Tags What's this?: Add a tag
Community Content   What is Community Content?
Add new content RSS  Annotations
Processing
© 2009 Microsoft Corporation. All rights reserved. Terms of Use | Trademarks | Privacy Statement
Page view tracker