Skip to content

Latest commit

 

History

History
65 lines (47 loc) · 1.88 KB

sp-dbmmonitordropmonitoring-transact-sql.md

File metadata and controls

65 lines (47 loc) · 1.88 KB
title description author ms.author ms.reviewer ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
sp_dbmmonitordropmonitoring (Transact-SQL)
sp_dbmmonitordropmonitoring stops and deletes the mirroring monitor job for all the databases on the server instance.
markingmyname
maghan
randolphwest
11/28/2023
sql
system-objects
reference
sp_dbmmonitordropmonitoring_TSQL
sp_dbmmonitordropmonitoring
sp_dbmmonitordropmonitoring
database mirroring [SQL Server], monitoring
TSQL

sp_dbmmonitordropmonitoring (Transact-SQL)

[!INCLUDE SQL Server]

Stops and deletes the mirroring monitor job for all the databases on the server instance.

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

Syntax

sp_dbmmonitordropmonitoring
[ ; ]

Arguments

None.

Return code values

None.

Result set

None.

Permissions

Requires membership in the sysadmin fixed server role, or execute permission directly on this stored procedure.

Examples

The following example drops database mirroring monitoring on all of the mirrored databases on the server instance.

EXEC sp_dbmmonitordropmonitoring;

Related content