共用方式為


NotForRepl Property

未來的 Microsoft SQL Server 版本將移除這項功能。請避免在新的開發工作中使用這項功能,並規劃修改目前使用這項功能的應用程式。

The NotForRepl property enables or disables an IDENTITY constraint for data inserted by a replication process.

語法

object.NotForRepl [= value]

Parts

  • object
    An expression that evaluates to an object in the Applies To list

  • value
    TRUE or FALSE

Data Type

Boolean

Modifiable

Read/write if using the Column object to create or alter a Microsoft SQL Server table. Read-only if the Column object references an existing column.

Prototype (C/C++)

HRESULT GetNotForRepl(LPBOOL pRetVal);
HRESULT SetNotForRepl(BOOL NewValue);

備註

If TRUE, the IDENTITY constraint is not enforced when data is added to the table by a known replication login. The replication process provides identity values.

If FALSE, the IDENTITY constraint is enforced regardless of the data source.

Applies To: