Hello everyone, im here want to ask about specifically about DB Update. Im currently happy with how KNIME can provide what i need until now.
First i get my data from the database, here is the example of the data that i pulled from the database :
ID | Name | Team Code |
---|---|---|
001 | Lamborghini - Ferrari - Toyota Team | LA1 |
then i have a dictionary excel file. an example of the data from this dictionary is like this
Name | Team Code |
---|---|
Lamborghini | LA1 |
Ferrari | FR1 |
Toyota | TYT1 |
i want to update the existing value in the database so i get the output of this
ID | Name | Team Code |
---|---|---|
001 | Lamborghini - Ferrari - Toyota Team | LA1 |
001 | Lamborghini - Ferrari - Toyota Team | FR1 |
001 | Lamborghini - Ferrari - Toyota Team | TYT1 |
so when i select in the query to get how many ferrari in the data, this data will be return since it got the ferrari code in the value.
So, does the DB Update nodes can solve problem like this? and if it can. what’s the input table that i need to create so it can update the DB perfectly. since i can’t delete and then insert the data all the way from the 0 because it will take too much time (i have 43 million row of data, so thats why i want to update just some portion of data that i missed when i prepare this data)