JobExecutionStatus 列舉型別
The JobExecutionStatus enumeration is a list of constant values that specify the execution status of a job or job step.
命名空間: Microsoft.SqlServer.Management.Smo.Agent
組件: Microsoft.SqlServer.SqlEnum (在 Microsoft.SqlServer.SqlEnum.dll 中)
語法
'宣告
Public Enumeration JobExecutionStatus
'用途
Dim instance As JobExecutionStatus
public enum JobExecutionStatus
public enum class JobExecutionStatus
type JobExecutionStatus
public enum JobExecutionStatus
成員
成員名稱 | 描述 | |
---|---|---|
Executing | Value = 1. The job is being run. | |
WaitingForWorkerThread | Value = 2. The job is waiting for a worker thread. | |
BetweenRetries | Value = 3. The job is waiting to retry after a failure. | |
Idle | Value = 4. The job is idle. | |
Suspended | Value = 5. The job is suspended. | |
WaitingForStepToFinish | Value = 6. The job is waiting for another branch of logic to finish before it can continue. | |
PerformingCompletionAction | Value = 7. The job is in the final completion stage. |
備註
The JobExecutionStatus enumeration class is served by the CurrentRunStatus property and EnumJobs method.