Skip to content

Latest commit

 

History

History
62 lines (44 loc) · 1.59 KB

sp-dbmmonitorhelpmonitoring-transact-sql.md

File metadata and controls

62 lines (44 loc) · 1.59 KB
title description author ms.author ms.reviewer ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
sp_dbmmonitorhelpmonitoring (Transact-SQL)
sp_dbmmonitorhelpmonitoring returns the current update period.
markingmyname
maghan
randolphwest
07/04/2024
sql
system-objects
reference
sp_dbmmonitorhelpmonitoring
sp_dbmmonitorhelpmonitoring_TSQL
sp_dbmmonitorhelpmonitoring
database mirroring [SQL Server], monitoring
TSQL

sp_dbmmonitorhelpmonitoring (Transact-SQL)

[!INCLUDE SQL Server]

Returns the current update period.

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

Syntax

sp_dbmmonitorhelpmonitoring
[ ; ]

Arguments

None.

Return code values

None.

Result set

Returns the current update period, that is, the number of minutes between updates of database mirroring status table. This value ranges from 1 to 120 minutes.

Permissions

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

Examples

The following example returns the current update period.

EXEC sp_dbmmonitorhelpmonitoring;

Related content