The UseServerSideBCP property directs BulkCopy object behavior when implementing a bulk copy import operation.
object.UseServerSideBCP [= value]
Part | Description |
---|---|
object | Expression that evaluates to an object in the Applies To list |
value | True or False |
The BulkCopy object can implement a data import operation using either the bulk copy extensions to ODBC or the Transact-SQL BULK INSERT statement.
When True, the BulkCopy object specifies a row import operation that will be implemented by using the BULK INSERT statement.
When False (default), the BulkCopy object specifies a row import or export operation using extensions to the SQL Server ODBC driver.
Boolean
Read/write
HRESULT GetUseServerSideBCP(LPBOOL pRetVal);
HRESULT SetUseServerSideBCP(BOOL NewValue);
BULK INSERT | Performing Bulk Copy Operations |