I'm working with a table of 50+ million rows.
I'd like to know if I should expect a better performance if I first insert batches of ~50k rows in a temporary table, and then in one time insert all of them in the bulk table, instead of directly inserting the ~50k rows in the bulk table?
To be precise, which is better?
Many small inserts into the target table or
First insert into temp table, then all of them in the target table?
The table has no indices.
Any suggestions for performance increase are welcome, of course!