ActionOnUpdateDeleteConflict Enum

Definition

Enumerates all actions that can be taken when handling an UPDATE statement that conflicts with a DELETE statement.

public enum class ActionOnUpdateDeleteConflict
public enum ActionOnUpdateDeleteConflict
type ActionOnUpdateDeleteConflict = 
Public Enum ActionOnUpdateDeleteConflict
Inheritance
ActionOnUpdateDeleteConflict

Fields

AcceptCustomData 3

The conflict is resolved using custom user data provided by the business logic handler. The custom user data is then propagated by the replication process.

AcceptDefaultResolution 0

The conflict is resolved using the default resolution rules

AcceptDelete 2

The conflict is resolved by accepting the delete as the winner.

AcceptUpdate 1

The conflict is resolved by accepting the update as the winner.

Applies to