How can I join two tables without losing the data in the joined table (I want to preserve the data in the table) whenever news rows with data need to be added to the already joined table? The trick is Table 2 has always just one row with the same column structure of Table 1, but the data in columns vary. Maybe a good example is adding currency exchange rates to a table everyday while preserving the previous days' data.
yes I can concatenate, but I have to use several concatenate nodes as new tables appear everyday. Is there any way to keep the previously concatenated tables after the concatenate operation and delete all the concatenate nodes from the workflow.
I solved the problem with the adding of table writer and reader nodes into the workflow. This created kind of a loop reading the table at the beginning and then overwriting same table at the end. I can keep the data of previously concatenated table with incorporating just one concatenate node.
however, if you use the XLS Appender or CSV Writer node, you can choose to append new data to the existing file. This would save you reprocessing the whole table in knime each time. Instead you would only need to process new data in knime.