Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello Community,
Whats the difference between tNormalize and tUniqRow?
I can see in help.talend.com its stated that tNormalize is used to get rid of duplicate row. Can someone help over here?
Thanks in advance!
Best Regards.
tUniqRow - make uniq all data passing thru, but not transform nothing
tNormalize - could do the same, but the main(?) idea - split column by a defined separator
for example:
col1 "1,2,2,3"
would be
col1 1 2 2 3
or
col1 1 2 3
depending from checkbox - get rid duplicates row
tUniqRow - make uniq all data passing thru, but not transform nothing
tNormalize - could do the same, but the main(?) idea - split column by a defined separator
for example:
col1 "1,2,2,3"
would be
col1 1 2 2 3
or
col1 1 2 3
depending from checkbox - get rid duplicates row