--- title: "sp_delete_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_delete_log_shipping_primary_secondary_TSQL" - "sp_delete_log_shipping_primary_secondary" dev_langs: - "TSQL" helpviewer_keywords: - "sp_delete_log_shipping_primary_secondary" ms.assetid: d6f71a12-f7b1-4a1c-9639-a533b8287b0c author: MashaMSFT ms.author: mathoma --- # sp_delete_log_shipping_primary_secondary (Transact-SQL) [!INCLUDE[tsql-appliesto-ss2008-xxxx-xxxx-xxx-md](../../includes/tsql-appliesto-ss2008-xxxx-xxxx-xxx-md.md)] Removes the entry for a secondary database on the primary server. ![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_delete_log_shipping_primary_secondary [ @primary_database = ] 'primary_database', [ @secondary_server = ] 'secondary_server', [ @secondary_database = ] 'secondary_database' ``` ## Arguments `[ @primary_database = ] 'primary_database'` Is the name of the database on the primary server. *primary_database* is **sysname**, with no default. `[ @secondary_server = ] 'secondary_server'` Is the name of the secondary server. *secondary_server* is **sysname**, with no default. `[ @secondary_database = ] 'secondary_database'` Is the name of the secondary database. *secondary_database* is **sysname**, with no default. ## Return Code Values 0 (success) or 1 (failure) ## Result Sets None. ## Remarks **sp_delete_log_shipping_primary_secondary** must be run from the **master** database on the primary server. This stored procedure removes the entry for a secondary database from **log_shipping_primary_secondaries** on the primary server. ## Permissions Requires membership in the **sysadmin** fixed server role. ## Examples In the following example, `sp_delete_log_shipping_primary_secondary` is used to delete the secondary database `LogShipAdventureWorks` from the secondary server `FLATIRON`. ``` EXEC master.dbo.sp_delete_log_shipping_primary_secondary @primary_database = N'AdventureWorks' ,@secondary_server = N'FLATIRON' ,@secondary_database = N'LogShipAdventureWorks'; 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)