BatchSize
Specifies the maximum number of rows included in each batch submitted during batch operations. To submit the entire batch as a single request, set BatchSize to 0 .
Data Type
int
Default Value
0
Remarks
When set to a value greater than 0, the provider splits the entire operation into smaller batches, each containing the number of rows specified in BatchSize. These smaller batches are submitted to the server one at a time.
BatchSize is useful in situations where the server imposes limits on the size of requests. By splitting the operation into smaller parts, you can work around these limitations and ensure successful batch processing.