Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Qlik Open Lakehouse is Now Generally Available! Discover the key highlights and partner resources here.
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