Bulk-load support in Adaptive Server ADO.NET Data Provider

Adaptive Server ADO.NET Data Provider supports bulk-load interface for fast insertions of large sets of rows to Adaptive Server. Setting the ENABLEBULKLOAD connection property allows ASEBulkCopy to invoke the bulk-load interface. Two types of bulk loading are supported:

Table 6: Bulk-Load Option Usage

Use Case

Additional Consideration

Bulk-Load Option to Use

Note

Insertion of single or small number of rows.

None

Insertion of large batch of rows.

The batch is part of a multistatement transaction.

Array Inserts

Rows are inserted faster than when bulk load is disabled.

You cannot enable the Adaptive Server select into or bulkcopy option because of recoverability considerations.

Array Inserts

Rows are inserted faster than when bulk load is disabled.

The batch is a single transaction and the Adaptive Server select into/bulkcopy option is enabled.

Bulk Copy

Adaptive Server can use high-speed bulk copy, which is faster than array inserts. The performance of Bulk Copy is still slightly faster than Array Inserts even if high-speed bulk copy is not used.

See the Adaptive Server Enterprise Utility Guide for information about the implications of enabling select into/bulkcopy and the conditions under which high-speed or logged bulk copy is used.

ENABLEBULKLOAD connection property

Enable or disable bulk-load support using the ENABLEBULKLOAD connection property:

StepsEnabling bulk load using the ADO.NET connection string

  1. Use SQLDriverConnect to specify a connection string.

  2. Set the ENABLEBULKLOAD connection string property to 0, 1, or 2, as appropriate. For example:

    Data Source=server1;port=port1;UID=sa;PWD=;
    Driver=AdaptiveServerEnterprise;
    ENABLEBULKLOAD=1;
    

Performance considerations

Although this feature does not require special configuration on the server, a larger page size and network packet size significantly improves performance. Depending on the client memory, using larger batches also improves performance.

Supported ASEBulkCopy options

ASEBulkCopy Options

Supported Bulk-load Mode

Default

Array Inserts, Bulk Copy, Off

KeepIdentity

Array Inserts, Bulk Copy, Off

KeepNulls

Array Inserts, Bulk Copy, Off

UseInternalTransaction

Array Inserts, Bulk Copy, Off

CheckConstraints

Off

FireTriggers

Off

TableLock

Not supported

Limitations