IDTSBulkInsertTask.KeepIdentity 属性
此 API 支持 SQL Server 2012 基础结构,但不能通过代码直接使用。
Gets or sets a value that specifies how identity value or values in the imported data file are used for the identity column.
命名空间: Microsoft.SqlServer.Dts.Tasks.BulkInsertTask
程序集: Microsoft.SqlServer.BulkInsertTask(在 Microsoft.SqlServer.BulkInsertTask.dll 中)
语法
声明
Property KeepIdentity As Boolean
Get
Set
用法
Dim instance As IDTSBulkInsertTask
Dim value As Boolean
value = instance.KeepIdentity
instance.KeepIdentity = value
bool KeepIdentity { get; set; }
property bool KeepIdentity {
bool get ();
void set (bool value);
}
abstract KeepIdentity : bool with get, set
function get KeepIdentity () : boolean
function set KeepIdentity (value : boolean)
属性值
类型:System.Boolean
true if identity value or values in the imported data file should be used for the identity column. true assigns the values that are specified in the source file to the identity column; false ignores the identity-column values that are specified in the source. The default value is true.
注释
For more information, see BulkInsertTask.