I want to update huge user database.
Below is the table format which contain 20k user records.
I have one excel sheet which have new data as below. This data is not specific to user. This is master data common to all user.
The task is read user specific data from table then read new data from excel sheet corresponding to old data after that update new data in same table for that user.
For example -
- Step 1 - Read data(use_id, node_id and kmap_type) from database for user_id 95961800
- Step 2 - Read new value from excel corresponding to database node_id(9908) which are 7707,1000,7707
- Step 3 - Update these new value in same table for same user with KMAP_TYPE as SUBINDUSTRY,FUNCTION AND ROLE respectively.
I am thinking for using spring boot batch service for this. because I have average knowledge in java and spring boot technology
Can anyone please suggest how should I proceeed here?
Thanks in advance.
I don't know if there's any Spring features for such a job.
What I would do is :
1) use Apache POI lib that lets us handle Excel file easily.
2) read each value in the Excel file (that sould be a new one if I understood well what you said)
3) update the database values with the new ones
Here's a code sample of what can be done with Apache POI : you get an Excel file in the src/test/resources/Excel folder (for example) and store it in a 'Workbook' object.
You can then handle your datas with 'Row' or 'Cell' object.
Try this and come back here for more details.