If I have 1000 records that I want to add to the database in smaller chunks, how should I design a process to accomplish this?
I have a few potential solutions, but I'm unsure about their performance implications:
However, I need clarification on the most suitable approach in terms of performance before implementing this functionality.
Discussion posts and replies are publicly visible
Hello Ankush Sharma
Doing the following would not put much impact on Performance.1. Get the data from your excel to a staging/temporary table
2. From this temp table, create a paging and get 100 records per time in an ER and use Stored procedure and write it to the actual table.