Purpose

Specifies whether explicit values may be inserted into IDENTITY columns defined as NOT FOR REPLICATION. This property is useful when publishing data from earlier versions of SQL Server.

Valid Values

true | false

Behavior

If set to true (Enabled), the driver allows explicit inserts on IDENTITY columns defined as NOT FOR REPLICATION.

If set to false (Disabled), the driver enforces constraints on IDENTITY columns imposed by the NOT FOR REPLICATION flag.

Data source method

public Boolean getEnableReplicationUser()

public void setEnableReplicationUser(Boolean)

Default

false (Disabled)

Data type

Boolean

See also