Share via


ApplyToTargetServerGroup Method

未來的 Microsoft SQL Server 發行版本將不再提供此功能。請避免在新的開發工作中使用此功能,並計劃修改目前使用此功能的應用程式。

The ApplyToTargetServerGroup method adds one or more execution targets to the list of targets maintained for the referenced Microsoft SQL Server Agent job.

語法

object
.ApplyToTargetServerGroup(
str
)

Parts

  • object
    Expression that evaluates to an object in the Applies To list.
  • str
    String that specifies a single target server group by name.

Prototype (C/C++)

HRESULT ApplyToTargetServerGroup(
SQLDMO_LPCSTR NewValue);

備註

Before a SQL Server Agent job can execute, the job must have at least one step and an execution target. When a SQL Server Agent acts as a master server for multiserver administration servers, known execution target servers can be grouped for easier targeting of multiple servers at one time.

When using SQL Distributed Management Objects (SQL-DMO) to create, schedule, and run SQL Server Agent jobs, use either the ApplyToTargetServer or ApplyToTargetServerGroup method to add an execution target. Use the ApplyToTargetServer method when an instance of SQL Server will be specified as an execution target. Use the ApplyToTargetServerGroup method when targeting grouped target servers.

For more information about configuring target server groups by using SQL-DMO, see TargetServerGroup Object.

Applies to:

Job Object