CommandExecutionSuccessCode Propiedad
Gets or sets the process exit code from a command shell process executed as a job step.
Espacio de nombres: Microsoft.SqlServer.Management.Smo.Agent
Ensamblado: Microsoft.SqlServer.Smo (en Microsoft.SqlServer.Smo.dll)
Sintaxis
'Declaración
<SfcPropertyAttribute> _
Public Property CommandExecutionSuccessCode As Integer
Get
Set
'Uso
Dim instance As JobStep
Dim value As Integer
value = instance.CommandExecutionSuccessCode
instance.CommandExecutionSuccessCode = value
[SfcPropertyAttribute]
public int CommandExecutionSuccessCode { get; set; }
[SfcPropertyAttribute]
public:
property int CommandExecutionSuccessCode {
int get ();
void set (int value);
}
[<SfcPropertyAttribute>]
member CommandExecutionSuccessCode : int with get, set
function get CommandExecutionSuccessCode () : int
function set CommandExecutionSuccessCode (value : int)
Valor de la propiedad
Tipo: System. . :: . .Int32
A Int32 value that specifies the command execution success code; 0 is success, and 1 is failure.
Notas
A job step that executes a command shell process relies on the process exit code to determine the success or failure of the job step. Set the CommandExecutionSuccessCode property to the successful return code of a command shell process to enable logic and notifications based on the success or failure of the job step.