My source is a csv file that has a field ( FIRST_NAME ) that contains an ~ in it on some records. I want to filter those out. Below is the filter condition I'm attempting to use.
substr(FIRST_NAME,1,1) = REG_EXTRACT(FIRST_NAME,'^[a-zA-Z]')
I only want to pass records that start with an alphabetic char, a-zA-Z, It appears to be filtering out all my rows because nothing is making it to my tgt.
Any suggestions on the filter condition would be appreciated.
Thanks in advance.
substr(FIRST_NAME,1,1) = REG_EXTRACT(FIRST_NAME,'^[a-zA-Z]')
I only want to pass records that start with an alphabetic char, a-zA-Z, It appears to be filtering out all my rows because nothing is making it to my tgt.
Any suggestions on the filter condition would be appreciated.
Thanks in advance.