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

Announcements
See why IDC MarketScape names Qlik a 2025 Leader! Read more
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Replace " within component tMysqlInput

Trying to replace the character " with nothing gives and error when trying to build the job.

This is of course because the " is used by talend itself.

 

My simple query is : "SELECT id, replace(postal_code,'"','') as postal_code from table"

 

Is there any other way I can replace the character " that is in the data field postal_code using talend?

regards,

Tomas

Labels (2)
1 Solution

Accepted Solutions
vapukov
Master II
Master II

just use escape character

"SELECT id, replace(postal_code,'\"','') as postal_code from table"

same possible todo in tMap

View solution in original post

1 Reply
vapukov
Master II
Master II

just use escape character

"SELECT id, replace(postal_code,'\"','') as postal_code from table"

same possible todo in tMap