Skip to content

Latest commit

 

History

History
57 lines (43 loc) · 2.04 KB

sp-cleanup-log-shipping-history-transact-sql.md

File metadata and controls

57 lines (43 loc) · 2.04 KB
title description author ms.author ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
sp_cleanup_log_shipping_history (Transact-SQL)
sp_cleanup_log_shipping_history (Transact-SQL)
markingmyname
maghan
08/09/2016
sql
system-objects
reference
sp_cleanup_log_shipping_history_TSQL
sp_cleanup_log_shipping_history
sp_cleanup_log_shipping_history
TSQL

sp_cleanup_log_shipping_history (Transact-SQL)

[!INCLUDE SQL Server]

This stored procedure cleans up history locally and on the monitor server based on retention period.

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

Syntax

  
sp_cleanup_log_shipping_history  
[ @agent_id = ] 'agent_id',  
[ @agent_type = ] 'agent_type'  

Arguments

[ @agent_id = ] 'agent_id', The primary ID for backup or the secondary ID for copy or restore. agent_id is uniqueidentifier and cannot be NULL.

[ @agent_type = ] 'agent_type' The type of log shipping job. 0 = Backup, 1 = Copy, 2 = Restore. agent_type is tinyint and cannot be NULL.

Return Code Values

0 (success) or 1 (failure)

Result Sets

None.

Remarks

sp_cleanup_log_shipping_history must be run from the master database on any log shipping server. This stored procedure cleans up local and remote copies of log_shipping_monitor_history_detail and log_shipping_monitor_error_detail based on history retention period.

Permissions

Only members of the sysadmin fixed server role can run this procedure.

See Also

About Log Shipping (SQL Server)
System Stored Procedures (Transact-SQL)