Skip to content

Latest commit

 

History

History
66 lines (46 loc) · 2.05 KB

sp-delete-maintenance-plan-transact-sql.md

File metadata and controls

66 lines (46 loc) · 2.05 KB
title description author ms.author ms.reviewer ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
sp_delete_maintenance_plan (Transact-SQL)
sp_delete_maintenance_plan deletes the specified maintenance plan.
markingmyname
maghan
randolphwest
01/23/2024
sql
system-objects
reference
sp_delete_maintenance_plan
sp_delete_maintenance_plan_TSQL
sp_delete_maintenance_plan
TSQL

sp_delete_maintenance_plan (Transact-SQL)

[!INCLUDE SQL Server]

Deletes the specified maintenance plan.

Note

This stored procedure is used with database maintenance plans. This feature has been replaced with maintenance plans that don't use this stored procedure. Use this procedure to maintain database maintenance plans on installations that were upgraded from a previous version of [!INCLUDE ssNoVersion].

[!INCLUDE ssNoteDepFutureAvoid]

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

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

[!INCLUDE msdb-execute-permissions]

Examples

Deletes the maintenance plan created by using sp_add_maintenance_plan.

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

Related content