StagingBatchStatus Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Contains values specifying the processing status of a staging (import) batch.
public enum class StagingBatchStatus
[System.CodeDom.Compiler.GeneratedCode("System.Runtime.Serialization", "4.0.0.0")]
[System.Runtime.Serialization.DataContract(Name="StagingBatchStatus", Namespace="http://schemas.microsoft.com/sqlserver/masterdataservices/2009/09")]
public enum StagingBatchStatus
[<System.CodeDom.Compiler.GeneratedCode("System.Runtime.Serialization", "4.0.0.0")>]
[<System.Runtime.Serialization.DataContract(Name="StagingBatchStatus", Namespace="http://schemas.microsoft.com/sqlserver/masterdataservices/2009/09")>]
type StagingBatchStatus =
Public Enum StagingBatchStatus
- Inheritance
-
StagingBatchStatus
- Attributes
Fields
Name | Value | Description |
---|---|---|
All | 0 | Includes all statuses of the staging batch. |
QueuedToRun | 1 | The batch is queued for processing. |
NotRunning | 2 | The batch is not running and is not queued for processing. |
Running | 3 | The batch is being processed. |
QueuedToClear | 4 | The batch is queued for deletion. |
Cleared | 5 | The batch records have been deleted. |
AllExceptCleared | 6 | Includes all statuses of the staging batch except the Cleared status. |
Completed | 7 | The batch records have been completed. |