Skip to content

Latest commit

 

History

History
58 lines (51 loc) · 4.7 KB

log-shipping-monitor-secondary-transact-sql.md

File metadata and controls

58 lines (51 loc) · 4.7 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
log_shipping_monitor_secondary (Transact-SQL)
log_shipping_monitor_secondary (Transact-SQL)
VanMSFT
vanto
03/14/2017
sql
system-objects
reference
log_shipping_monitor_secondary_TSQL
log_shipping_monitor_secondary
log_shipping_monitor_secondary system table
TSQL

log_shipping_monitor_secondary (Transact-SQL)

[!INCLUDE SQL Server]

Stores one monitor record per secondary database in a log shipping configuration. This table is stored in the msdb database.

The tables related to history and monitoring are also used at the primary server and the secondary servers.

Column name Data type Description
secondary_server sysname The name of the secondary instance of the [!INCLUDEmsCoName] [!INCLUDEssDEnoversion] in the log shipping configuration.
secondary_database sysname The name of the secondary database in the log shipping configuration.
secondary_id uniqueidentifier The ID for the secondary server in the log shipping configuration.
primary_server sysname The name of the primary instance of the [!INCLUDEssDEnoversion] in the log shipping configuration.
primary_database sysname The name of the primary database in the log shipping configuration.
restore_threshold int The number of minutes allowed to elapse between restore operations before an alert is generated.
threshold_alert int The alert to be raised when the restore threshold is exceeded.
threshold_alert_enabled bit Determines if restore threshold alerts are enabled. 1 = Enabled.

0 = Disabled.
last_copied_file nvarchar(500) The filename of the last backup file copied to the secondary server.
last_copied_date datetime The time and date of the last copy operation to the secondary server.
last_copied_date_utc datetime The time and date of the last copy operation to the secondary server, expressed in Coordinated Universal Time.
last_restored_file nvarchar(500) The filename of the last backup file restored to the secondary database.
last_restored_date datetime The time and date of the last restore operation on the secondary database.
last_restored_date_utc datetime The time and date of the last restore operation on the secondary database, expressed in Coordinated Universal Time.
last_restored_latency int The amount of time, in minutes, that elapsed between when the log backup was created on the primary and when it was restored on the secondary.

The initial value is NULL.
history_retention_period int The amount of time, in minutes, that log shipping history records are retained for a given secondary database before being deleted.

Remarks

In addition to being stored on the remote monitor server, and information related to a secondary server is also stored on the secondary server in its log_shipping_monitor_secondary table.

See Also

About Log Shipping (SQL Server)
sp_refresh_log_shipping_monitor (Transact-SQL)
sp_add_log_shipping_secondary_database (Transact-SQL)
sp_change_log_shipping_secondary_database (Transact-SQL)
sp_delete_log_shipping_secondary_database (Transact-SQL)
sp_help_log_shipping_secondary_database (Transact-SQL)
sp_help_log_shipping_monitor_secondary (Transact-SQL)
sp_refresh_log_shipping_monitor (Transact-SQL)
System Tables (Transact-SQL)