JobStepFlags Enumeration
The JobStepFlags enumeration is a list of constant values that specify the file to which to append job history information.
This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.
Assembly: Microsoft.SqlServer.SqlEnum (in Microsoft.SqlServer.SqlEnum.dll)
| Member name | Description | |
|---|---|---|
| AppendAllCmdExecOutputToJobHistory | Job history, including command output, is appended to the job history file. | |
| AppendToJobHistory | Job history is appended to the job history file. | |
| AppendToLogFile | Job history is appended to the SQL Server log file. | |
| AppendToTableLog | Job history is appended to a log table. | |
| LogToTableWithOverwrite | Job history is written to a log table, overwriting previous contents. | |
| None | Job history is not appended to a file. | |
| ProvideStopProcessEvent | Job processing is stopped. |
The JobStepFlags enumerated class is served by the JobStepFlags property.
Show: