Skip to content

Latest commit

 

History

History
68 lines (52 loc) · 2.65 KB

File metadata and controls

68 lines (52 loc) · 2.65 KB
title sp_help_log_shipping_primary_secondary (Transact-SQL) | Microsoft Docs
ms.custom
ms.date 03/14/2017
ms.prod sql
ms.prod_service database-engine
ms.reviewer
ms.technology system-objects
ms.topic language-reference
f1_keywords
sp_help_log_shipping_primary_secondary
sp_help_log_shipping_primary_secondary_TSQL
dev_langs
TSQL
helpviewer_keywords
sp_help_log_shipping_primary_secondary
ms.assetid bc0044b4-7831-4ff9-8856-825c76aa9893
author MashaMSFT
ms.author mathoma

sp_help_log_shipping_primary_secondary (Transact-SQL)

[!INCLUDEtsql-appliesto-ss2008-xxxx-xxxx-xxx-md]

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

Topic link icon Transact-SQL Syntax Conventions

Syntax

  
sp_help_log_shipping_primary_secondary  
[ @primary_database = ] 'primary_database'  

Arguments

[ @primary_database = ] 'primary_database' Is 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 Sets

Column name Description
secondary_server The name of the secondary instance of the [!INCLUDEmsCoName] [!INCLUDEssDEnoversion] 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 [!INCLUDEssSampleDBobject].

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

See Also

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