sql - Replace Ambigious / Invalid Text Characters from String -
i inserting string table. there ambiguous, illegal text characters 'ÔÇô' , '├®' appearing in string. want replace these invalid characters table , update table. there way replace such characters in sql. using sql server 2008.
you use 1 of functions here:
how strip non-alphabetic characters string in sql server?
you haven't included insert statement, i'm going guess you've done similar to
insert table2 select dbo.fn_stripcharacters(myfield1, 'a-z0-9'), myfield2, myfield3 table1
Comments
Post a Comment