I think I am on the right path but still getting 0 for this decode statement and where I have two records as a test one being Field Opperator and the other being FIELD OPPERATOR. I would expect the first one to be 0 and the second one to be 1 but both are returning as 0 Do I have something wrong
DECODE( match_pattern(HR_Data_Source.dbo.HRP1000.STEXT, '[A-Z]') = TRUE,1,0)
I also tried this variation of above
DECODE( match_pattern(HR_Data_Source.dbo.HRP1000.STEXT, 'A-Z') = TRUE,1,0)
with same results. If I remove the ' ' around it i get an error.