| title | sp_add_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 | 23b3e100-5318-410e-b8f3-51c89b2dd777 | ||
| author | MashaMSFT | ||
| ms.author | mathoma |
[!INCLUDEtsql-appliesto-ss2008-xxxx-xxxx-xxx-md]
This stored procedure adds an entry for a secondary database on the primary server.
Transact-SQL Syntax Conventions
sp_add_log_shipping_primary_secondary
[ @primary_database = ] 'primary_database',
[ @secondary_server = ] 'secondary_server',
[ @secondary_database = ] 'secondary_database'
[ @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.
0 (success) or 1 (failure)
None
sp_add_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_add_log_shipping_primary_secondary to add an entry for the secondary database LogShipAdventureWorks to the secondary server FLATIRON.
EXEC master.dbo.sp_add_log_shipping_primary_secondary
@primary_database = N'AdventureWorks'
, @secondary_server = N'flatiron'
, @secondary_database = N'LogShipAdventureWorks' ;
GO
About Log Shipping (SQL Server)
System Stored Procedures (Transact-SQL)