| title | sp_refresh_log_shipping_monitor (Transact-SQL) | ||
|---|---|---|---|
| description | sp_refresh_log_shipping_monitor refreshes the remote monitor tables with the latest information from a given primary or secondary server. | ||
| author | markingmyname | ||
| ms.author | maghan | ||
| ms.reviewer | randolphwest | ||
| ms.date | 06/23/2025 | ||
| ms.service | sql | ||
| ms.subservice | system-objects | ||
| ms.topic | reference | ||
| f1_keywords |
|
||
| helpviewer_keywords |
|
||
| dev_langs |
|
[!INCLUDE SQL Server]
This stored procedure refreshes the remote monitor tables with the latest information from a given primary or secondary server for the specified log shipping agent. The procedure is invoked on the primary or secondary server.
:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions
sp_refresh_log_shipping_monitor
[ @agent_id = ] 'agent_id'
, [ @agent_type = ] agent_type
[ , [ @database = ] N'database' ]
, [ @mode = ] mode
[ ; ]
The primary ID for backup or the secondary ID for copy or restore. @agent_id is uniqueidentifier, with no default, and can't be NULL.
The type of log shipping job. @agent_type is tinyint, and can't be NULL. @agent_type must be one of these values:
| Value | Description |
|---|---|
0 |
Backup |
1 |
Copy |
2 |
Restore |
The primary or secondary database used by logging by backup or restore agents. @database is sysname, with a default of NULL.
Specifies whether to refresh the monitor data or clean it. @mode is tinyint, and can be one of these values:
| Value | Description |
|---|---|
1 (default) |
Refresh |
2 |
Delete |
0 (success) or 1 (failure).
None.
sp_refresh_log_shipping_monitor refreshes the log_shipping_monitor_primary, log_shipping_monitor_secondary, log_shipping_monitor_history_detail, and log_shipping_monitor_error_detail tables with any session information that isn't already transferred. sp_refresh_log_shipping_monitor allows you to synchronize the monitor server with primary or a secondary server when the monitor is out of sync for some time. Additionally, it allows you to clean up the monitor information on monitor server if necessary.
sp_refresh_log_shipping_monitor must be run from the master database on the primary or secondary server.
Only members of the sysadmin fixed server role can run this procedure.