共用方式為


IdentityRangeManagementOption 列舉

Enumerates options for managing identity column range assignments in tables published using merge replication and transactional replication with updating Subscribers.

命名空間:  Microsoft.SqlServer.Replication
組件:  Microsoft.SqlServer.Rmo (在 Microsoft.SqlServer.Rmo.dll 中)

語法

'宣告
Public Enumeration IdentityRangeManagementOption
'用途
Dim instance As IdentityRangeManagementOption
public enum IdentityRangeManagementOption
public enum class IdentityRangeManagementOption
type IdentityRangeManagementOption
public enum IdentityRangeManagementOption

成員

成員名稱 說明
None Identity columns are replicated to the Subscriber as the base data type.
Automatic Identity columns are marked as NOT FOR REPLICATION, and replication automatically assigns identity ranges.
Manual Identity columns are marked as NOT FOR REPLICATION, but replication does not assign identity ranges.

備註

Identity range management is supported for both merge and transactional replication with updating Subscribers.

You should use Automatic whenever possible.

Automatic identity range management behavior is set by specifying PublisherIdentityRangeSize, SubscriberIdentityRangeSize, and IdentityRangeThreshold.

Manual is only used for snapshot and transactional replication without updates at the Subscriber, peer-to-peer transactional replication, or if your application must control identity ranges programmatically. With this option, you must ensure that ranges are assigned to the Publisher and each Subscriber, and that new ranges are assigned if the initial ranges are used.

None is only recommended for indexed views and for backwards compatibility with earlier versions of Microsoft SQL Server.

This namespace, class, or member is supported only in version 2.0 of the Microsoft .NET Framework.

請參閱

參考

Microsoft.SqlServer.Replication 命名空間

IdentityRangeManagementOption

其他資源

使用 NOT FOR REPLICATION 控制條件約束、識別和觸發程序

複寫識別欄位