次の方法で共有


IncludeIdentityValues Property

この機能は、将来のバージョンの Microsoft SQL Server では削除される予定です。新規の開発作業ではこの機能を使用しないようにし、現在この機能を使用しているアプリケーションは修正することを検討してください。

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.

構文

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);

解説

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

参照

その他の技術情報

SET IDENTITY_INSERT (Transact-SQL)

ヘルプおよび情報

SQL Server 2005 の参考資料の入手