次の方法で共有


SubSystem Property

この機能は、将来のバージョンの Microsoft SQL Server では削除される予定です。新しい開発作業では、この機能の使用を避け、現在この機能を使用しているアプリケーションは修正するようにしてください。

The SubSystem property specifies the SQL Server Agent execution subsystem used to interpret job step task-defining text.

構文

object.SubSystem [=value]

Parts

  • object
    An expression that evaluates to an object in the Applies To list.

  • value
    A string that identifies an existing SQL Server Agent job step subsystem by name. TSQL is the default.

Data Type

String

Modifiable

Read/write

Prototype (C/C++)

HRESULT GetSubSystem(SQLDMO_LPBSTR pRetVal);
HRESULT SetSubSystem(SQLDMO_LPCSTR NewValue);
注意

SQL Distributed Management Objects (SQL-DMO) strings are always returned as OLE BSTR objects. A C/C++ application obtains a reference to the string. The application must release the reference using SysFreeString.

説明

Most commonly, a job step uses the ActiveScripting, CmdExec, or Transact-SQL subsystem. Other job step subsystems exist. Job step subsystem names can be enumerated using the EnumSubSystems method.

When SQL-DMO is used to create or modify SQL Server  Agent jobs, the job step execution subsystem chosen using the SubSystem property defines applicability and interpretation of other properties of the JobStep object.

For example, if SubSystem is TSQL, Transact-SQL is used in the task-defining text specified using the Command property, and the DatabaseName and DatabaseUserName properties are applicable. If SubSystem is CmdExec, an operating system command is specified using the Command property, and the CmdExecSuccessCode and OSRunPriority properties are applicable.

Applies To:

関連項目

参照