I have a file that have around 80000+ records and size is around 35MB.
I would like to understand the way to read the data in it but need paging to be part of the process as i want this to be inserted into DB.
Discussion posts and replies are publicly visible
Hijyotik5834 I would not recommend pushing larger data files into the database in one go. You can split those into smaller chunks and push them to the database, which would also help to run queries faster with minimal load.