sp_add_log_shipping_primary_secondary (Transact-SQL)
SQL Server 2005
This stored procedure adds an entry for a secondary database on the primary server.
Transact-SQL Syntax Conventions
- [ @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.
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
Reference
System Stored Procedures (Transact-SQL)Other Resources
Log ShippingLog Shipping Tables and Stored Procedures