In my project, sometimes it happens that user enters non-english characters in name column. I want to search multiple tables in my database for non-english characters and delete them or replace with ''
(empty string).
I've already gone through following links but still answer is not clear:
- Replacing multiple characters in SQL
- Replacing characters in access SQL
- MSDN: Pattern matching using Regular Expression
Looking for a SQL script that will do this task. Currently I'm using the replace method, something like :
update TBLDAILYROUTINE a set a.NAME = replace(a.NAME,'é','')