Udostępnij za pośrednictwem


sp_delete_jobserver (języka Transact-SQL)

Usuwa określony serwer docelowy.

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

sp_delete_jobserver { [ @job_id = ] job_id | [ @job_name = ] 'job_name' } , 
     [ @server_name = ] 'server'

Argumenty

  • [ @job_id= ] job_id
    The identification number of the job from which the specified target server will be removed.job_id is uniqueidentifier, with a default of NULL.

  • [ @job_name= ] 'job_name'
    The name of the job from which the specified target server will be removed.job_name is sysname, with a default of NULL.

    Uwaga

    Albo job_id lub job_name należy określić; nie może być jednocześnie określone.

  • [ @server_name= ] 'server'
    The name of the target server to remove from the specified job.server is nvarchar(30), with no default.server can be **(LOCAL)**or the name of a remote target server.

Wartości kodów powrotnych

0 (sukces) lub 1 (brak)

Zestawy wyników

None

Uprawnienia

Aby użytkownik mógł uruchomić tę procedurę składowaną, musi być członkiem stałej roli sysadmin serwera.

Przykłady

The following example removes the server SEATTLE2 from processing the Weekly Sales Backupsjob.

Uwaga

W tym przykładzie założono, że Weekly Sales Backups zadanie zostało utworzone wcześniej.

USE msdb ;
GO

EXEC sp_delete_jobserver
    @job_name = N'Weekly Sales Backups',
    @server_name = N'SEATTLE2' ;
GO