Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi everyone,
I need to save many files in two tables oracle
- table parent : save filename and sysdate
- table child : save content file + PK of parent table
Thank you in advance
Now I can save in the parent table, but not correct in the child table.
Do you have an idea please.
thanks.
I would recommend you use OnSubjobOk instead of OnComponentOk on the connection to tOracleInput_1.
If the purpose of tOracleInput_1 is to retrieve the records from the parent table in order to provide the keys for the insert into the child table, you probably want to make that flow your lookup and the flow from your tFileInputPositional the main. Beyond that, we'll need more details about the problem you are experiencing. Are you getting an error message? Is the job finishing but not writing the expected information to one or both of your tables?
Hi,
What's the error you are getting for your subjob 2(child)?
Here is a KB article about:https://help.talend.com/pages/viewpage.action?pageId=190513190
Hope it will be helpful.
Best regards
Sabrina
Thanks for your replies. I have no errors in my job, but i have the same contents in my two child tables.
File 1
name : file1.txt
content :
100Name
200Country
300ADRESS
File 2
name : file2.txt
content :
400Name
500Country
600ADRESS
In my table, Parent, i have two records, file1.txt and file2.txt, => correct
But in my tables : child 1 and child 2 i have the same contents.
i changed the main flow in tMap, and the query from the database in lookup.
now i get the contents two files in the same table 1.
Hi, We have a similar scenario. We are using MySql. We want to loop through the files in directory and insert the filename and sysdate in first table which is having auto increment ID column. The newly inserted filename ID has to be taken to another table along with the content of the file.
PFA ,Currently we could load the data into main table wiithout the fileid from first table.
Can someone please help us, using which component we can achieve our requirement.
Table1
ID
FILENAME
SYSDATE
Table2
ID
FILEID(ID column from Table1)
CLI
EST ...
Thanks in advance!
I also looked for a solution but could not get an answer anywhere. Maybe this is wrong, but I did so. In tMap, I created a stream with a file name and identifier. On the way to the database with a table of file names, I added an aggregator with the key file name and with the aggregation function of only the first record.