Quote:
Originally Posted by Martijnvs
Try using bigger or smaller batch-sizes (more or less rows per io), the -b parameter.
|
I guess the OP is extracting data, so in that case -b has no relation as its only related to bcp in. The only thing I can think of using a higher packet size to see if it helps.
Example:
bcp pubs2..titles out table_out -A 2048
sets the packet size to 2048 bytes for this bcp session. packet_size must be between the values of the default network packet size and maximum network packet size configuration variables, and it must be a multiple of 512.
Use network packet sizes larger than the default to improve the performance of large bulk-copy operations.