You are not logged in.
Announcement
Unanswered posts
|
Pages: 1

Hi, I tent to extract rows from my db2400 to a mysql database with talend. I tried to use TRIM function but for same results.
tMap select used :
row1.STDOS==50 && row1.ARTPRD=="SK"
row1.STDOS==50 && StringHandling.BTRIM(row1.ARTPRD)=="SK"
STDOS is a numeic field and ARTPRD is string field. But select don't work fine, no rows are extract. If i use only numerics fields for my select, rows extraction is ok. But when I use string fields, I don't have the expected data.
Any suggestions to debug this issue please?
Offline
Hello
try
row1.STDOS==50 && row1.ARTPRD.equals("SK")
or
row1.STDOS==50 && StringHandling.BTRIM(row1.ARTPRD).equals("SK")Best regards
Shong
Offline
Pages: 1