Udostępnij za pośrednictwem


sp_add_log_shipping_secondary_primary (języka Transact-SQL)

Konfiguruje podstawowe informacje o lokalnych i zdalnych monitora łącza są dodawane i tworzy zadania kopiowania i przywracanie na serwer pomocniczy dla określonej głównej bazy danych.

Topic link iconKonwencje składni języka Transact-SQL

sp_add_log_shipping_secondary_primary
 [ @primary_server = ] 'primary_server', 
[ @primary_database = ] 'primary_database',
[ @backup_source_directory = ] 'backup_source_directory' , 
[ @backup_destination_directory = ] 'backup_destination_directory'
[ @copy_job_name = ] 'copy_job_name'
[ @restore_job_name = ] 'restore_job_name'
[, [ @file_retention_period = ] 'file_retention_period']
[, [ @monitor_server = ] 'monitor_server']
[, [ @monitor_server_security_mode = ] 'monitor_server_security_mode']
[, [ @monitor_server_login = ] 'monitor_server_login']
[, [ @monitor_server_password = ] 'monitor_server_password']
[, [ @copy_job_id = ] 'copy_job_id' OUTPUT ]
[, [ @restore_job_id = ] 'restore_job_id' OUTPUT ]
[, [ @secondary_id = ] 'secondary_id' OUTPUT]

Argumenty

  • [ @ primary_server = ] 'primary_server"
    The name of the primary instance of the Microsoft SQL Server Database Engine in the log shipping configuration.primary_server is sysname and cannot be NULL.

  • [ @ primary_database = ] 'primary_database"
    Is the name of the database on the primary server.primary_database is sysname, with no default.

  • [ @ backup_source_directory = ] 'backup_source_directory"
    The directory where transaction log backup files from the primary server are stored.backup_source_directory is nvarchar(500) and cannot be NULL.

  • [ @ backup_destination_directory = ] 'backup_destination_directory"
    The directory on the secondary server where backup files are copied to.backup_destination_directory is nvarchar(500) and cannot be NULL.

  • [ @ copy_job_name = ] 'copy_job_name"
    The name to use for the SQL Server Agent job being created to copy transaction log backups to the secondary server.copy_job_name is sysname and cannot be NULL.

  • [ @ restore_job_name = ] 'restore_job_name"
    Is the name of the SQL Server Agent job on the secondary server that restores the backups to the secondary database.restore_job_name is sysname and cannot be NULL.

  • [ @ file_retention_period = ] 'file_retention_period"
    Is the length of time in minutes in which the history is retained.history_retention_period is int, with a default of NULL.Wartość równą 14420 użyte są nieokreślone.

  • [ @ monitor_server = ] 'monitor_server"
    Is the name of the monitor server.Monitor_server is sysname, with no default, and cannot be NULL.

  • [ @ monitor_server_security_mode = ] 'monitor_server_security_mode"
    Tryb zabezpieczeń używane do łączenia się z serwerem monitorowania.

    ZAMKNIĘCIE SYSTEMU

    0 = SQL Server uwierzytelnianie.

    monitor_server_security_mode jest bit i nie może mieć wartości NULL.

  • [ @ monitor_server_login = ] 'monitor_server_login"
    Wymaga uprawnień CONTROL SERVER lub prawo własności zabezpieczany.

  • [ @ monitor_server_password = ] 'monitor_server_password"
    CONNECT SQL uprawnień do konto logowania do programu SQL Server i podmiotów, których identyfikator logowania ma regranted go odmawia

  • [ @ copy_job_id = ] 'copy_job_id"DANE WYJŚCIOWE
    The ID associated with the copy job on the secondary server.copy_job_id is uniqueidentifier and cannot be NULL.

  • [ @ restore_job_id = ] 'restore_job_id"DANE WYJŚCIOWE
    The ID associated with the restore job on the secondary server.restore_job_id is uniqueidentifier and cannot be NULL.

  • [ @ secondary_id = ] 'secondary_id"DANE WYJŚCIOWE
    The ID for the secondary server in the log shipping configuration.secondary_id is uniqueidentifier and cannot be NULL.

Wartości kodów powrotnych

0 (sukces) lub 1 (brak)

Zestawy wyników

None

Remarks

sp_add_log_shipping_secondary_primary musi być uruchamiane wzorzec bazy danych serwer pomocniczy.Ta procedura przechowywana wykonuje następujące czynności:

  1. Generuje pomocniczy identyfikator określonym serwerem podstawowym, a podstawowa baza danych.

  2. Wykonuje następujące czynności:

    1. Dodaje wpis dla pomocniczego IDENTYFIKATORA w log_shipping_secondary na podstawie podanych argumentów.

    2. Tworzy zadanie kopiowania dla pomocniczego IDENTYFIKATORA, który jest wyłączony.

    3. Ustawia identyfikator zadania kopii w log_shipping_secondary wpis do IDENTYFIKATORA zadania w zadanie kopiowania.

    4. Tworzy zadanie przywracanie dla pomocniczego IDENTYFIKATORA, który jest wyłączony.

    5. zestaw IDENTYFIKATORA zadanie przywracanie w log_shipping_secondary wpis identyfikator zadanie zadanie przywracanie.

Uprawnienia

Tylko członkowie sysadmin roli serwera stałe można uruchomić tę procedurę.

Przykłady

Ten przykład ilustruje, za pomocą sp_add_log_shipping_secondary_primary procedura przechowywana Aby skonfigurować informacje o podstawowa baza danych AdventureWorks serwer pomocniczy.

EXEC master.dbo.sp_add_log_shipping_secondary_primary 
@primary_server = N'TRIBECA' 
,@primary_database = N'AdventureWorks' 
,@backup_source_directory = N'\\tribeca\LogShipping' 
,@backup_destination_directory = N'' 
,@copy_job_name = N'' 
,@restore_job_name = N'' 
,@file_retention_period = 1440 
,@monitor_server = N'ROCKAWAY' 
,@monitor_server_security_mode = 1 
,@copy_job_id = @LS_Secondary__CopyJobId OUTPUT 
,@restore_job_id = @LS_Secondary__RestoreJobId OUTPUT 
,@secondary_id = @LS_Secondary__SecondaryId OUTPUT 
GO