|
|
|
|
|
by sharken
1839 days ago
|
|
For relational databases in the enterprise with large amounts of data, batched inserts work great. For large deletes it is often better to move the rows that won't be deleted to a new table and rename the table when done. With large updates it is important to look at the query plan and optimize it with good indexes. Batching also works well in this scenario. |
|