title | description | author | ms.author | ms.reviewer | ms.date | ms.service | ms.subservice | ms.topic | f1_keywords | helpviewer_keywords | dev_langs | ||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
sp_delete_log_shipping_primary_secondary (Transact-SQL) |
Removes the entry for a secondary database on the primary server. |
MashaMSFT |
mathoma |
randolphwest |
01/23/2024 |
sql |
system-objects |
reference |
|
|
|
[!INCLUDE SQL Server]
Removes the entry for a secondary database on the primary server.
:::image type="icon" source="../../includes/media/topic-link-icon.svg" border="false"::: Transact-SQL syntax conventions
sp_delete_log_shipping_primary_secondary
[ @primary_database = ] N'primary_database'
, [ @secondary_server = ] N'secondary_server'
, [ @secondary_database = ] N'secondary_database'
[ ; ]
The name of the database on the primary server. @primary_database is sysname, with no default.
The name of the secondary server. @secondary_server is sysname, with no default.
The name of the secondary database. @secondary_database is sysname, with no default.
0
(success) or 1
(failure).
None.
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.
Requires membership in the sysadmin fixed server role, or execute permission directly on this stored procedure.
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