Skip to content

Latest commit

 

History

History
73 lines (52 loc) · 2.34 KB

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

File metadata and controls

73 lines (52 loc) · 2.34 KB
title description author ms.author ms.reviewer ms.date ms.service ms.subservice ms.topic f1_keywords helpviewer_keywords dev_langs
sp_help_log_shipping_primary_secondary (Transact-SQL)
Returns information regarding all the secondary databases for a given primary database.
MashaMSFT
mathoma
randolphwest
05/14/2024
sql
system-objects
reference
sp_help_log_shipping_primary_secondary
sp_help_log_shipping_primary_secondary_TSQL
sp_help_log_shipping_primary_secondary
TSQL

sp_help_log_shipping_primary_secondary (Transact-SQL)

[!INCLUDE SQL Server]

This stored procedure returns information regarding all the secondary databases for a given primary database.

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

Syntax

sp_help_log_shipping_primary_secondary
    [ @primary_database = ] N'primary_database'
[ ; ]

Arguments

[ @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

Column name Description
secondary_server The name of the secondary instance of the [!INCLUDE ssdenoversion-md] in the log shipping configuration.
secondary_database The name of the secondary database in the log shipping configuration.

Remarks

sp_help_log_shipping_primary_secondary must be run from the master database on the primary server.

Permissions

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

Examples

This example illustrates using sp_help_log_shipping_primary_secondary to retrieve a list of secondary databases associate with the primary database [!INCLUDE ssSampleDBobject].

EXEC master.dbo.sp_help_log_shipping_primary_secondary
    @primary_database=N'AdventureWorks';
GO

Related content