Tagged Questions
The updatebatchsize tag has no wiki summary.
4
votes
2answers
346 views
How do I set DataAdapter.UpdateBatchSize to a “optimal” value?
I've finally gotten my insert batch to work and now I've been fiddling with the size of the batch, but I can't see any difference in performance between a value of 50 and a value of 10000. This seems ...
2
votes
1answer
680 views
What to look for when setting UpdateBatchSize
I have a .NET application that is merging two datatables with a lot of rows (10,000+). There is a good chance of having a large number of update/inserts to perform to the SQL table when using the ...
0
votes
1answer
26 views
What's the point of specifying hibernate.jdbc.batch_size?
This Hibernate configuration ostensibly should control how many objects are cached in the first level cache. The reason is easy enough to understand, we don't want to run out of memory.
But ...
0
votes
0answers
55 views
SqlDataAdapter UpdateBatchSize row errors
The DataAdapter has a ContinueUpdateOnError property which you can set
to 'True' which will continue processing the DataAdapter.Update
command, even if an error is encountered. This is ideal, so I ...