I am dealing with a table which has two columns, first_name and last_name which are set to be non casespecific unicode columns.
case when (REGEXP_SIMILAR(trim(first_name),'.*[\u0000-\u017F]+.*','i') = 1
or
REGEXP_SIMILAR(trim(first_name),'.*[\uFF00-\uFFEF]+.*','i') = 1)
then 'Y' else 'N' end allowed_y_n
With the help of the above query i am trying to identify and flag latin names with accents in those columns.
But i am facing the following error, The pattern specified is not a valid pattern.
Any help here is appreciated, TIA