ChangeStates Enumeration

 

Enumerates all data change states that custom business logic can handle during synchronization.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Namespace:   Microsoft.SqlServer.Replication.BusinessLogicSupport
Assembly:  Microsoft.SqlServer.Replication.BusinessLogicSupport (in Microsoft.SqlServer.Replication.BusinessLogicSupport.dll)

[FlagsAttribute]
public enum class ChangeStates

Member nameDescription
CommitsToDestination

When changes are committed to the destination database.

PublisherDeleteErrors

When an error occurs while propagating a DELETE statement from the Publisher to the Subscriber.

PublisherDeletes

When a DELETE statement at the Publisher is applied at the Subscriber.

PublisherInsertErrors

When an error occurs while propagating an INSERT statement from the Publisher to the Subscriber.

PublisherInserts

When an INSERT statement at the Publisher is applied at the Subscriber.

PublisherUpdateErrors

When an error occurs while propagating an UPDATE statement from the Publisher to the Subscriber.

PublisherUpdates

When an UPDATE statement at the Publisher is applied at the Subscriber.

PublisherUpdateSubscriberDeleteConflicts

When an UPDATE statement at the Publisher conflicts with a DELETE statement at the Subscriber.

SubscriberDeleteErrors

When an error occurs while propagating a DELETE statement from the Subscriber to the Publisher.

SubscriberDeletes

When a DELETE statement at the Subscriber is applied at the Publisher.

SubscriberInsertErrors

When an error occurs while propagating an INSERT statement from the Subscriber to the Publisher.

SubscriberInserts

When an INSERT statement at the Subscriber is applied at the Publisher.

SubscriberUpdateErrors

When an error occurs while propagating an UPDATE statement from the Subscriber to the Publisher.

SubscriberUpdatePublisherDeleteConflicts

When an UPDATE statement at the Subscriber conflicts with a DELETE statement at the Publisher.

SubscriberUpdates

When an UPDATE statement at the Subscriber is applied at the Publisher.

UpdateConflicts

When an UPDATE statement at the Publisher conflicts with an UPDATE statement at the Subscriber.

No code example is currently available or this language may not be supported.
Return to top
Show: