I am on java project to import huge amount of data from .csv file to a database. I am interested in understanding what can be the best approach in achieving this.
- Definitely one of the options is to using java application calling stored procedure.
- Second option I can think of is, since we are already using spring, spring-jdbc pair can help us too.
- Currently we are using spring-hibernate pair to get this done at a application level (This is something I presume is not a right approach)
Can you please help me with some thought from other end of spectrum?
In my opinion , such cases (bulk import) should be addressed using database features:
In case of Oracle SQLLoader (as suggested by @Pangea)
In case of MS SQL Server BCP (Bulk Copy)
If you are looking @ Java based approach for this then I echo @Pangea In addition to to that You can break down a batch insert into sub-batches and run them concurrently for better perf.
Ex: If you have 10k records to be inserted then you can build batches of 200 records each and insert 5 batches concurrently.
In this case you need code to track each sub-batch.
Hope this helps!