PartitionOptions 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.
Enumerates the ways in which data in an article is partitioned amongst subscriptions when the merge publication uses a parameterized row filter.
public enum class PartitionOptions
public enum PartitionOptions
type PartitionOptions =
Public Enum PartitionOptions
- Inheritance
-
PartitionOptions
Fields
Name | Value | Description |
---|---|---|
Overlapping | 0 | The filtering for the article either is static or does not yield a unique subset of data for each partition, that is, an "overlapping" partition. |
OverlappingDisallowOutOfPartitionDml | 1 | The partitions are overlapping, and data manipulation language (DML) updates made at the Subscriber cannot change the partition to which a row belongs. |
NonOverlappingSharedBetweenSubscriptions | 2 | The filtering for the article yields non-overlapping partitions, but multiple Subscribers can receive the same partition. |
NonOverlappingSingleSubscription | 3 | The filtering for the article yields non-overlapping partitions that are unique for each subscription. |
Remarks
If the source table for an article is already published in another publication, then the value of PartitionOptions must be the same for both articles.
This namespace, class, or member is supported only in version 2.0 of the Microsoft .NET Framework.