I need to load about 15 million rows of data in a database DB2using java.
To keep things simple, I will not talk about the file format or the number of tables in the database. Let's say this is only one table with 5 columns that gets data from a huge single csv file.
In this scenario - I need something
I'm really not worried about
- Code reuse
- Modularity
- Testing
It seems like a way to download a package using simple javais the way to go. I know Spring Batch, but I do n’t know whether to add this layer.
Question to the group - what would you suggest. Everything in the world Java / Java EEis an acceptable solution (if it does not require the software that we need to buy).
source
share