• Hi

    To stagger the jobs on the different target servers you would have to, in the 1st job step for example, have a 'randomizer' based on the host name.

    Eg:

    DECLARE @HostN VARCHAR(128) = @@ServerName

    IF @HostN = ServerA WAITFOR DELAY '00:01:00'

    Etc