I have a really simple problem: Replace XX_FistName LastName (maybe dr. or phd anything trash) to firstname lastname
now i am using regexp replace:
trim(regexp_replace(lower(vhc.name),'xx_|dr|\.|\,|phd|jr','')
but this is really really slow... can you give me some hint how can i replace this something faster? I have too much data to compare and do other functions on these data and it takes hours.