Question - What do you mean by ‘Batch Updates’?
Answer -
A batch update can be defined as a batch of updates grouped together. To improve the performance of the data updates in a database is to update and send the changes in batches to the database, rather than one by one.
Advantages of Batch Updates:
- Less network traffic is involved as data is sent in batches.
- A database might be able to execute some of the updates in parallel.