Share via


JobID Property

Microsoft SQL Server의 이후 버전에서는 이 기능이 제거됩니다. 새 개발 작업에서는 이 기능을 사용하지 말고, 현재 이 기능을 사용하는 응용 프로그램은 수정하십시오.

The JobID property is a string representing the unique identifier of a SQL Server Agent job.

구문

object
.JobID [=value]

Parts

  • object
    An expression that evaluates to an object in the Applies To list
  • value
    A string representation of a globally unique identifier (GUID)

Data Type

String

Modifiable

Read/write for the Alert and JobHistoryFilter objects. Read-only for the Job object.

Prototype (C/C++)

HRESULT GetJobID(SQLDMO_LPBSTR pRetVal);
HRESULT SetJobID(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 by using SysFreeString.

주의

Each SQL Server Agent job is identified by a system-generated GUID. The identifier is a 32-character string representing a hexadecimal number.

For the Alert object, the JobID property represents the job identifier of the SQL Server Agent job run in response to the represented alert. The property is used to assign a job to an alert. The JobName property of the Alert object is read-only.

Setting the JobID property on the JobHistoryFilter object restricts the output of the EnumJobHistory method of the JobServer object. If used, the output includes only historical data for the identified SQL Server Agent job.

Applies To:

Alert Object

JobHistoryFilter Object

Job Object