sp_apply_job_to_targets (Transact-SQL)
SQL Server 2008
Applies a job to one or more target servers or to the target servers belonging to one or more target server groups.
The following example applies the previously created Backup Customer Information job to all the target servers in the Servers Maintaining Customer Information group.
USE msdb ;
GO
EXEC dbo.sp_apply_job_to_targets
@job_name = N'Backup Customer Information',
@target_server_groups = N'Servers Maintaining Customer Information',
@operation = N'APPLY' ;
GO
