Find Replace in MySQL
Somewhere between the backing-up and restoration of my MySQL WordPress database I picked up some strange characters. Rather than having to go through by hand to edit them out, I used a nice SQL snippet to do a full-database search and replace.
update [table_name] set [field_name] = replace([field_name],'[string_to_find]','[string_to_replace]');
So in my case, to get rid of these weird “” characters, I ran the statement
update wp_posts set post_content = replace(post_content,'ÂÂ','');
Worked perfectly for me, it should for you as well.
Tags: homepost
Got anything to say? Go ahead and leave a comment!
Archives
- January 2012
- December 2011
- November 2011
- May 2011
- April 2011
- March 2011
- February 2011
- January 2010
- December 2009
- September 2009
- August 2009
- April 2009
- February 2009
- July 2008
- June 2008
- May 2008
- April 2008
- March 2008
- February 2008
- January 2008
- December 2007
- November 2007
- October 2007
- September 2007
- August 2007
- July 2007
- May 2007
- April 2007
- March 2007
- January 2007
- December 2006
- October 2006
- August 2006



Posted under: