How do you get rid of � (utf8 invalid character) in SQL server -
we have store lots of � characters in our product descriptions. tried running update queries update {table} set description=replace(description,'�','')
worked in instances keep finding more of them. know easy way rid of them all?
our store running on volusion uses sql server 2008, limit kinds of queries can run. if necessary, have updated copy of of product info in mysql database can want , upload changes.
a php mysql connection defaults latin1 connection, so, first query after connection should be:
mysql_query("set names 'utf8'");
maybe ^^
Comments
Post a Comment