Share via


JobID Property

Diese Funktion wird in zukünftigen Versionen von Microsoft SQL Server nicht mehr bereitgestellt. Verwenden Sie diese Funktion beim Entwickeln neuer Anwendungen nicht, und planen Sie das Ändern von Anwendungen, in denen es zurzeit verwendet wird.

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

Syntax

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);
HinweisHinweis

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.

Hinweise

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.