I am trying to store some data in an Oracle database. For a simple example, I have 2 tables I want to create, A and B, where table A has an ID which should be selected from A_sequence.nextval and each entry in table B has a foreign key linking to the id in table A.
If I read a couple of CSV files into KNIME, how can I insert entries into tables A and B where I can correctly get back the newsly assigned A_sequence values so the table B entries can link to the correct entry?
There is probably something I'm missing, but I couldn't see an easy way to do this.