| title | sp_delete_database_backuphistory (Transact-SQL) | Microsoft Docs | ||
|---|---|---|---|
| ms.custom | |||
| ms.date | 03/14/2017 | ||
| ms.prod | sql | ||
| ms.prod_service | database-engine | ||
| ms.reviewer | |||
| ms.technology | system-objects | ||
| ms.topic | language-reference | ||
| f1_keywords |
|
||
| dev_langs |
|
||
| helpviewer_keywords |
|
||
| ms.assetid | 4c237944-453d-49fb-8d0e-4596945ac147 | ||
| author | stevestein | ||
| ms.author | sstein |
[!INCLUDEtsql-appliesto-ss2008-xxxx-xxxx-xxx-md]
Deletes information about the specified database from the backup and restore history tables.
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 [!INCLUDEssSampleDBobject] database in the backup-and-restore history tables.
USE msdb;
GO
EXEC sp_delete_database_backuphistory @database_name = 'AdventureWorks2012';
sp_delete_backuphistory (Transact-SQL)
Backup History and Header Information (SQL Server)