Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I'm having a problem running an update query in Talend. I get the error that is attached. I can run the following query just fine in Snowflake without an issue. I works ok in Snowflake, but not in Talend. I have used other update statements in Talend with snowflake.
update "EMS"."PUBLIC"."PGA_CLEAN_SUBSCRIBED"
SET rydercup_2020 =
replace (rydercup_2020,'"','')
where email_address <> ''
@gfred try this
"update EMS.PUBLIC.PGA_CLEAN_SUBSCRIBED
SET rydercup_2020 =
replace (rydercup_2020,'" + "\"" + "','')
where email_address <> ''"
Notice that
" - is red coloured
' - is blue coloured