| 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 |
|
||
| dev_langs |
|
||
| helpviewer_keywords |
|
||
| ms.assetid | bc0044b4-7831-4ff9-8856-825c76aa9893 | ||
| author | MashaMSFT | ||
| ms.author | mathoma |
[!INCLUDEtsql-appliesto-ss2008-xxxx-xxxx-xxx-md]
This stored procedure returns information regarding all the secondary databases for a given primary database.
Transact-SQL Syntax Conventions
sp_help_log_shipping_primary_secondary
[ @primary_database = ] 'primary_database'
[ @primary_database = ] 'primary_database'
Is the name of the database on the primary server. primary_database is sysname, with no default.
0 (success) or 1 (failure)
| 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. |
sp_help_log_shipping_primary_secondary must be run from the master database on the primary server.
Only members of the sysadmin fixed server role can run this procedure.
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
About Log Shipping (SQL Server)
System Stored Procedures (Transact-SQL)