Skip to main content
Announcements
SYSTEM MAINTENANCE: Thurs., Sept. 19, 1 AM ET, Platform will be unavailable for approx. 60 minutes.
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

tSortRow case insensitve

Hi,

 

How can we sort ignoring case of column in talend.

 

Thanks,

Suneel.

Labels (2)
5 Replies
akumar2301
Specialist II
Specialist II

workwround : 

Create additional column before tsortrow in lower or upper case of orginal column , and sort on that. 

 

There is already a JIRA ticket to implement this feature but not not yet done

https://jira.talendforge.org/browse/TDI-5506

 

akumar2301
Specialist II
Specialist II

workwround :

create a new column before tsort in lower/uppercase of original colulmn. and use that for sorting.

There is a JIRA ticket to implement this feature but no yet done.
https://jira.talendforge.org/browse/TDI-5506
tjohn
Contributor
Contributor

Hi Suneel, 

 

you can upcase  column then Sort

 

Thanks,

tjclearner

Anonymous
Not applicable
Author

Is there any other possibility, because the data should not be changed.

 

 

Thanks,

Suneel.

tjohn
Contributor
Contributor

In a tmap : Add a new column col2 --- UPCASE of col1

Then in a tSortRow ---- sort by Col2

Thanks