Click to Rate and Give Feedback
TechNet
TechNet Library
SQL Server
SQL Server 2005
 sp_delete_database_backuphistory (T...

  Switch on low bandwidth view
Community Content
In this section
Statistics Annotations (0)
Collapse All/Expand All Collapse All
SQL Server 2005 Books Online (November 2008)
sp_delete_database_backuphistory (Transact-SQL)

Updated: 15 September 2007

Deletes information about the specified database from the backup and restore history tables.

Topic link icon Transact-SQL Syntax Conventions

sp_delete_database_backuphistory [ @database_name = ] 'database_name'
[ @database_name = ] database_name

Specifies the name of the database involved in backup and restore operations. database_name is sysname, with no default.

0 (success) or 1 (failure)

None

sp_delete_database_backuphistory must be run from the msdb database.

This stored procedure affects the following tables:

Requires membership in the sysadmin fixed server role.

The following example deletes all entries for the AdventureWorks database in the backup-and-restore history tables.

USE msdb;
GO
EXEC sp_delete_database_backuphistory 'AdventureWorks';

Release History

15 September 2007

Changed content:
  • Corrected syntax to use @database_name (instead of the incorrect term @db_nm).

5 December 2005

New content:
  • Added the Remarks section.
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