Compartir a través de


JobStep.Command Propiedad

Gets or sets the command execution string for the job step.

Espacio de nombres:  Microsoft.SqlServer.Management.Smo.Agent
Ensamblado:  Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)

Sintaxis

'Declaración
<SfcPropertyAttribute(SfcPropertyFlags.Standalone)> _
Public Property Command As String 
    Get 
    Set
'Uso
Dim instance As JobStep 
Dim value As String 

value = instance.Command

instance.Command = value
[SfcPropertyAttribute(SfcPropertyFlags.Standalone)]
public string Command { get; set; }
[SfcPropertyAttribute(SfcPropertyFlags::Standalone)]
public:
property String^ Command {
    String^ get ();
    void set (String^ value);
}
[<SfcPropertyAttribute(SfcPropertyFlags.Standalone)>]
member Command : string with get, set
function get Command () : String 
function set Command (value : String)

Valor de la propiedad

Tipo: System.String
A String value that specifies the execution string for the job step.

Comentarios

The Command property specifies the execution string for a Microsoft SQL Server Agent job step. Failure or success of execution determines failure or success of the job step.

The text specified by the Command property is run by SQL Server Agent using the executable subsystem indicated by the JobStep object's SubSystem property. The syntax in the Command property is validated when the SubSystem property is specified.

Ejemplos

Programar tareas administrativas automáticas en el Agente SQL Server

Vea también

Referencia

JobStep Clase

Espacio de nombres Microsoft.SqlServer.Management.Smo.Agent

Otros recursos

Tareas administrativas automatizadas (Agente SQL Server)

sp_help_jobstep (Transact-SQL)