--- 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) [!INCLUDE[tsql-appliesto-ss2008-xxxx-xxxx-xxx-md](../../includes/tsql-appliesto-ss2008-xxxx-xxxx-xxx-md.md)] This stored procedure returns information regarding all the secondary databases for a given primary database. ![Topic link icon](../../database-engine/configure-windows/media/topic-link.gif "Topic link icon") [Transact-SQL Syntax Conventions](../../t-sql/language-elements/transact-sql-syntax-conventions-transact-sql.md) ## 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 [!INCLUDE[msCoName](../../includes/msconame-md.md)] [!INCLUDE[ssDEnoversion](../../includes/ssdenoversion-md.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](../../includes/sssampledbobject-md.md)]. ``` EXECUTE master.dbo.sp_help_log_shipping_primary_secondary @primary_database=N'AdventureWorks'; GO ``` ## See Also [About Log Shipping (SQL Server)](../../database-engine/log-shipping/about-log-shipping-sql-server.md) [System Stored Procedures (Transact-SQL)](../../relational-databases/system-stored-procedures/system-stored-procedures-transact-sql.md)