Simple search and replace using MySQL.
Using a mysql database it is possible to very quickly perform a simple search and replace using a single line of SQL. This saves hours of manual editing or the overhead of using code like PHP or similar to churn through database result sets.
UPDATE tablename SET tablename.field = REPLACE (tablename.field, 'replace_this', 'with_this');
Thanks to URBAN mainframe for this little GEM.