Skip to content

Latest commit

 

History

History
72 lines (55 loc) · 2.62 KB

File metadata and controls

72 lines (55 loc) · 2.62 KB
title sp_delete_maintenance_plan (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 03/14/2017
ms.prod sql-non-specified
ms.reviewer
ms.suite
ms.technology
database-engine
ms.tgt_pltfrm
ms.topic language-reference
f1_keywords
sp_delete_maintenance_plan
sp_delete_maintenance_plan_TSQL
dev_langs
TSQL
helpviewer_keywords
sp_delete_maintenance_plan
ms.assetid 6f36b63f-3d18-4d42-9469-2febb6926530
caps.latest.revision 30
author JennieHubbard
ms.author jhubbard
manager jhubbard

sp_delete_maintenance_plan (Transact-SQL)

[!INCLUDEtsql-appliesto-ss2008-xxxx-xxxx-xxx_md]

Deletes the specified maintenance plan.

Note

This stored procedure is used with database maintenance plans. This feature has been replaced with maintenance plans which do not use this stored procedure. Use this procedure to maintain database maintenance plans on installations that were upgraded from a previous version of [!INCLUDEssNoVersion].

[!INCLUDEssNoteDepFutureAvoid]

Applies to: [!INCLUDEssNoVersion] ([!INCLUDEssKatmai] through current version).

Topic link icon Transact-SQL Syntax Conventions

Syntax

  
sp_delete_maintenance_plan [ @plan_id = ] 'plan_id'   

Arguments

[ @plan_id =] 'plan_id'
Specifies the ID of the maintenance plan to be deleted. plan_id is uniqueidentifier, and must be a valid ID.

Return Code Values

0 (success) or 1 (failure)

Remarks

sp_delete_maintenance_plan must be run from the msdb database.

Permissions

Only members of the sysadmin fixed server role can execute sp_delete_maintenance_plan.

Examples

Deletes the maintenance plan created by using sp_add_maintenance_plan.

EXECUTE sp_delete_maintenance_plan 'FAD6F2AB-3571-11D3-9D4A-00C04FB925FC';  

See Also

Maintenance Plans
Database Maintenance Plan Stored Procedures (Transact-SQL)