A collection of options for execution of SQL bulk copy operations
Namespace: Relativity.API.Context
Assembly: Relativity.API (in Relativity.API.dll) Version: 640db774aa42dfbe1785add27fbb41844ec5c7d4
Syntax
The ISqlBulkCopyParameters type exposes the following members.
Properties
Name | Description | |
---|---|---|
![]() | BatchSize |
When set, the value passed along to the the SqlBulkCopy. Left unset, it defaults to 10000.
|
![]() | ColumnMappings |
A list of the SqlBulkCopyColumnMapping that, if not empty, are passed along to the SqlBulkCopy.
|
![]() | DestinationTableName |
The name of the table being populated. Cannot be null, empty, or whitespace.
|
![]() | EnableStreaming |
When set, determines whether (true) or not (false) the SqlBulkCopy operation can stream data from the inbound IDataReader.
Unset defaults to false
|
![]() | Options |
The SqlBulkCopyOptions passed along to the SqlBulkCopy instance, if set. Left unset it initializes to TableLock |
![]() | Timeout |
When set, the value passed along to the SqlBulkCopy. Left unset, it defaults to the environment's LongRunningQueryTimeout instance setting.
|
See Also