Proprietà HasStep
Gets the Boolean property value that specifies whether the job has at least one job step.
Spazio dei nomi: Microsoft.SqlServer.Management.Smo.Agent
Assembly: Microsoft.SqlServer.Smo (in Microsoft.SqlServer.Smo.dll)
Sintassi
'Dichiarazione
<SfcPropertyAttribute(SfcPropertyFlags.Expensive)> _
Public ReadOnly Property HasStep As Boolean
Get
'Utilizzo
Dim instance As Job
Dim value As Boolean
value = instance.HasStep
[SfcPropertyAttribute(SfcPropertyFlags.Expensive)]
public bool HasStep { get; }
[SfcPropertyAttribute(SfcPropertyFlags::Expensive)]
public:
property bool HasStep {
bool get ();
}
[<SfcPropertyAttribute(SfcPropertyFlags.Expensive)>]
member HasStep : bool
function get HasStep () : boolean
Valore proprietà
Tipo: System. . :: . .Boolean
A Boolean value that specifies whether the job has at least one job step.
If True, the job has at least one job step.
If False, the job does not have any job steps.
Osservazioni
Microsoft SQL Server Agent jobs must have at least one job step to be executable. Define and add JobStep objects to the JobSteps collection of a Job object to create job steps. This alters the value of the HasStep property.
Vedere anche