Skip to content

Latest commit

 

History

History
78 lines (54 loc) · 2.52 KB

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

File metadata and controls

78 lines (54 loc) · 2.52 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_job (Transact-SQL)
Disassociates the specified maintenance plan from the specified job.
markingmyname
maghan
randolphwest
01/23/2024
sql
system-objects
reference
sp_delete_maintenance_plan_job
sp_delete_maintenance_plan_job_TSQL
sp_delete_maintenance_plan_job
TSQL

sp_delete_maintenance_plan_job (Transact-SQL)

[!INCLUDE SQL Server]

Disassociates the specified maintenance plan from the specified job.

Note

This stored procedure is used with database maintenance plans. This feature has been replaced with maintenance plans which 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

Syntax

sp_delete_maintenance_plan_job
    [ @plan_id = ] 'plan_id'
    , [ @job_id = ] 'job_id'
[ ; ]

Arguments

[ @plan_id = ] 'plan_id'

Specifies the ID of the maintenance plan. @plan_id is uniqueidentifier, and must be a valid ID.

[ @job_id = ] 'job_id'

Specifies the ID of the job with which the maintenance plan is associated. @job_id is uniqueidentifier, and must be a valid ID.

Return code values

0 (success) or 1 (failure).

Remarks

sp_delete_maintenance_plan_job must be run from the msdb database.

When all jobs are removed from the maintenance plan, you should run sp_delete_maintenance_plan_db to remove the remaining databases from the plan.

Permissions

[!INCLUDE msdb-execute-permissions]

Examples

This example deletes the job B8FCECB1-E22C-11D2-AA64-00C04F688EAE from the maintenance plan.

EXEC sp_delete_maintenance_plan_job
    N'FAD6F2AB-3571-11D3-9D4A-00C04FB925FC',
    N'B8FCECB1-E22C-11D2-AA64-00C04F688EAE';

Related content