Pat
06/06/2023, 9:14 PMscottvonduhn
06/06/2023, 9:37 PMASCIISTR
unfortunately does not quite convert non-ASCII characters to an ASCII equivalent: https://docs.oracle.com/en/database/oracle/oracle-database/19/sqlrf/ASCIISTR.html
CONVERT({field}, 'US7ASCII')
is closer, but not perfect. It doesn’t handle certain characters like ß
, so you may need to use a combined approach, manually replacing additional characters not handled by convert: CONVERT(REGEXP_REPLACE({field}, 'ß', 'ss'), 'US7ASCII')
scottvonduhn
06/06/2023, 9:42 PMPat
06/06/2023, 9:44 PMscottvonduhn
06/06/2023, 9:49 PM