Share via


Job.JobID 속성

Gets the job ID value.

네임스페이스:  Microsoft.SqlServer.Management.Smo.Agent
어셈블리:  Microsoft.SqlServer.Smo(Microsoft.SqlServer.Smo.dll)

구문

‘선언
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public ReadOnly Property JobID As Guid 
    Get
‘사용 방법
Dim instance As Job 
Dim value As Guid 

value = instance.JobID
[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public Guid JobID { get; }
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
public:
property Guid JobID {
    Guid get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
member JobID : Guid
function get JobID () : Guid

속성 값

유형: System.Guid
A Guid system object value that specifies the job ID value.

주의

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

The following code example creates a job and displays its GUID ID value.

C#

Server srv = new Server("(local)");
Job jb = new Job(srv.JobServer, "Test Job");
jb.Create();
Console.WriteLine(jb.JobID.ToString());

PowerShell

$srv = new-object Microsoft.SqlServer.Management.Smo.Server("(local)")
$jb = new-object Microsoft.SqlServer.Management.Smo.Agent.Job($srv.JobServer, "Test Job")
$jb.Create()
Write-Host $jb.JobID.ToString()

참고 항목

참조

Job 클래스

Microsoft.SqlServer.Management.Smo.Agent 네임스페이스

관련 자료

관리 태스크 자동화(SQL Server 에이전트)

sp_add_job(Transact-SQL)

SQL Server 에이전트에서 자동 관리 태스크 예약