Finding and removing non ascii characters from an Oracle Varchar2

前端 未结 17 2175
猫巷女王i
猫巷女王i 2020-12-02 23:03

We are currently migrating one of our oracle databases to UTF8 and we have found a few records that are near the 4000 byte varchar limit. When we try and migrate these reco

17条回答
  •  抹茶落季
    2020-12-02 23:28

    I think this will do the trick:

    SELECT REGEXP_REPLACE(COLUMN, '[^[:print:]]', '')
    

提交回复
热议问题