scottvonduhn
05/12/2021, 8:59 PMCASE WHEN UPPER({my_field}) = UPPER('find me') THEN 1 ELSE 0 END
?
A recent database update caused UUID’s that were previously always being sent to NetSuite in upper case to suddenly all be lower case, so many searches are failing to find a match.George McMullen
05/12/2021, 9:11 PMCASE WHEN {my_field} = UPPER('find me') OR LOWER('find me') THEN 1 ELSE 0 END
That way it doesn’t need to transform the whole column. But it could give you problems if you have mixed case in an entry.
I for some reason thought that plain criteria is case insensitive, but I might be wrong.George McMullen
05/12/2021, 9:12 PMLIKE
with ‘%’ around it. Or see if REGEXP_LIKE works.George McMullen
05/12/2021, 9:16 PMCASE WHEN regexp_like({name} , 'geever', 'i') THEN 1 ELSE 0 END
George McMullen
05/12/2021, 9:16 PMscottvonduhn
05/13/2021, 12:14 AM