Skip to content

Latest commit

 

History

History
69 lines (48 loc) · 2.36 KB

sp-delete-log-shipping-secondary-primary-transact-sql.md

File metadata and controls

69 lines (48 loc) · 2.36 KB
title description author ms.author ms.reviewer ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
sp_delete_log_shipping_secondary_primary (Transact-SQL)
Removes the information about the specified primary server from the secondary server, and removes the copy job and restore job from the secondary.
MashaMSFT
mathoma
randolphwest
01/23/2024
sql
system-objects
reference
sp_delete_log_shipping_secondary_primary_TSQL
sp_delete_log_shipping_secondary_primary
sp_delete_log_shipping_secondary_primary
TSQL

sp_delete_log_shipping_secondary_primary (Transact-SQL)

[!INCLUDE SQL Server]

sp_delete_log_shipping_secondary_primary removes the information about the specified primary server from the secondary server, and removes the copy job and restore job from the secondary.

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

Syntax

sp_delete_log_shipping_secondary_primary
    [ @primary_server = ] N'primary_server'
    , [ @primary_database = ] N'primary_database'
[ ; ]

Arguments

[ @primary_server = ] N'primary_server'

The name of the primary instance of the [!INCLUDE ssDEnoversion] in the log shipping configuration. @primary_server is sysname, and can't be NULL.

[ @primary_database = ] N'primary_database'

The name of the database on the primary server. @primary_database is sysname, with no default.

Return code values

0 (success) or 1 (failure).

Result set

None.

Remarks

sp_delete_log_shipping_secondary_primary must be run from the master database on the secondary server. This stored procedure does the following:

  1. Deletes the copy and restore jobs for the secondary ID.
  2. Deletes the entry in log_shipping_secondary.
  3. Calls sp_delete_log_shipping_alert_job on the monitor server.

Permissions

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

Related content