Partager via


Propriété JobID

Gets the job ID value.

Espace de noms :  Microsoft.SqlServer.Management.Smo.Agent
Assembly :  Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)

Syntaxe

'Déclaration
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public ReadOnly Property JobID As Guid
    Get
'Utilisation
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

Valeur de propriété

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

Notes

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

Exemples

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()