• In a nutshell what I think you are looking at is the difference in 1M seperate insert/ update statements vs a batch transaction of one insert/update statement that contains 1M additions. So the overhead is accounted for by all the times the 1M seperate insert statements are committing data back to the database which is 1M times vs. once for the batch. This is set theory in practice.

    --Dave