Skip to main content
Announcements
Join us at Qlik Connect for 3 magical days of learning, networking,and inspiration! REGISTER TODAY and save!
cancel
Showing results for 
Search instead for 
Did you mean: 
dipanjan93
Contributor
Contributor

Difference between tNormalize and tUniqRow

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.

Labels (2)
1 Solution

Accepted Solutions
vapukov
Master II
Master II

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

 

View solution in original post

1 Reply
vapukov
Master II
Master II

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