Share via


IncludeIdentityValues Property

Questa funzionalità verrà rimossa in una delle prossime versioni di Microsoft SQL Server. Evitare di utilizzare questa funzionalità in un nuovo progetto di sviluppo e prevedere interventi di modifica nelle applicazioni in cui è attualmente implementata.

The IncludeIdentityValues property controls the handling of existing values for a column with the Microsoft SQL Server identity property when data is copied to the SQL Server table.

Sintassi

object
.IncludeIdentityValues [= 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

Prototype (C/C++)

HRESULT GetIncludeIdentityValues(LPBOOL pRetVal);
HRESULT SetIncludeIdentityValues(BOOL NewValue);

Osservazioni

If TRUE, SQL Distributed Management Objects (SQL-DMO) runs a SET IDENTITY_INSERT ON statement when the ImportData method of a Table object is called.

If FALSE, SQL-DMO ignores any data values present for a column with the identity property. SQL Server generates data values for the column by using the column's setting for identity seed and increment. The default is FALSE.

Applies To:

BulkCopy Object

Vedere anche

Altre risorse

SET IDENTITY_INSERT (Transact-SQL)

Guida in linea e informazioni

Assistenza su SQL Server 2005