Skip to content

Latest commit

 

History

History
76 lines (53 loc) · 2.41 KB

sp-add-maintenance-plan-db-transact-sql.md

File metadata and controls

76 lines (53 loc) · 2.41 KB
title description author ms.author ms.reviewer ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
sp_add_maintenance_plan_db (Transact-SQL)
Associates a database with a maintenance plan.
MashaMSFT
mathoma
randolphwest
06/02/2023
sql
system-objects
reference
sp_add_maintenance_plan_db_TSQL
sp_add_maintenance_plan_db
sp_add_maintenance_plan_db
TSQL

sp_add_maintenance_plan_db (Transact-SQL)

[!INCLUDE SQL Server]

Associates a database with a 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 [!INCLUDE ssNoVersion].

[!INCLUDE ssNoteDepFutureAvoid]

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

Syntax

sp_add_maintenance_plan_db
    [ @plan_id = ] 'plan_id'
    , [ @db_name = ] 'database_name'
[ ; ]

Arguments

[ @plan_id = ] 'plan_id'

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

[ @db_name = ] 'database_name'

Specifies the name of the database to be added to the maintenance plan. The database must be created or exist before its addition to the plan. @database_name is sysname.

Return code values

0 (success) or 1 (failure).

Remarks

sp_add_maintenance_plan_db must be run from the msdb database.

Permissions

[!INCLUDE msdb-execute-permissions]

Examples

This example adds the [!INCLUDE ssSampleDBobject] database to the maintenance plan created in sp_add_maintenance_plan.

EXEC sp_add_maintenance_plan_db
    N'FAD6F2AB-3571-11D3-9D4A-00C04FB925FC',
    N'AdventureWorks2022';

Related content