Partager via


StepCompletionAction Enumeration

The StepCompletionAction enumeration contains values that specify the action taken on completion of a job step.

Espace de noms: Microsoft.SqlServer.Management.Smo.Agent
Assembly: Microsoft.SqlServer.SqlEnum (in microsoft.sqlserver.sqlenum.dll)

Syntaxe

'Déclaration
Public Enumeration StepCompletionAction
public enum StepCompletionAction
public enum class StepCompletionAction
public enum StepCompletionAction
public enum StepCompletionAction

Members

Member name Description
GoToNextStep When the referenced job step completes the next job step is executed.
GoToStep When the referenced job step completes the specified job step is executed.
QuitWithFailure When the referenced job step completes the job completes execution with a status of failure.
QuitWithSuccess When the referenced job step completes the job completes execution with a status of success.

Notes

Texte mis à jour :

If your job is designed so that after performing one job step successfully it moves on to perform the next job step in the sequence, you should set OnSuccessAction to GoToNextStep. However, if you want to jump to a job step that is out of sequence, you will have to use GoToStep, and then specify which job step number to jump to. For example, if a job step fails, you might want to jump to another job step to manage the failure. To do this, set the OnFailAction to GoToStep, and then set the OnFailStep to the integer value that matches the ID property of the JobStep.

The StepCompletionAction enumeration class is served by the OnSuccessAction property and the OnFailAction property.

Cet espace de noms, cette classe ou ce membre est pris en charge uniquement par la version 2.0 de Microsoft .NET Framework.

Plateformes

Plateformes de développement

Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.

Plateformes cibles

Pour obtenir la liste des plateformes prises en charge, consultez Configuration matérielle et logicielle requise pour l'installation de SQL Server 2005.

Voir aussi

Référence

Microsoft.SqlServer.Management.Smo.Agent Namespace