Skip to main content
Announcements
A fresh, new look for the Data Integration & Quality forums and navigation! Read more about what's changed.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Generation of MD5 Hash key in table

Hi,

I have a requirement, where I need to move data from source table to target table.

here i don't want to move all data to target table, I want to move only updated rows, so instead of checking all columns  i want to generate Hash-key in the target table. 

I downloaded MD5 function from talend exchange. 

Can you please help me how to use this function with respect to table because all I can see is it is used to generate Hash-key for file.

Can't we use it for table? If yes, please help me with the steps.

Thanks in advance

 

Regards

ShaX

Labels (1)
  • v7.x

1 Solution

Accepted Solutions
manodwhb
Champion II

@ShaX ,i can suggest to use tAddCRCrow to generate a for the all column through talend and do the inner join and take the inner join rejects and populate to target.

View solution in original post

5 Replies
Anonymous
Not applicable
Author

Hi,

 

   If you are using any custom component, I would suggest to get in touch with the corresponding developer as she/he will be the authority for that custom component.

 

Warm Regards,
Nikhil Thampi

Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂

Anonymous
Not applicable
Author

Hi,

 

    At the same time, if you want to segregate the records as insert and update records, you can do it in Talend by joining the input table and the target table as lookup using inner join. All the records which pass the inner join will be update records and any record which is not having match will be insert record.

 

Warm Regards,
Nikhil Thampi

Please appreciate our Talend community members by giving Kudos for sharing their time for your query. If your query is answered, please mark the topic as resolved 🙂

manodwhb
Champion II

@ShaX ,i can suggest to use tAddCRCrow to generate a for the all column through talend and do the inner join and take the inner join rejects and populate to target.

manodwhb
Champion II

@ShaX ,your job should be below way.

0683p000009M2gC.png

Anonymous
Not applicable
Author

@manodwhb  Thanks for ur reply.

This solved my problem to some extent.