How Do You Pronounce “MySQL”?

mysql logo resized image

We sometimes talk on the telephone with various technology companies, and their representatives. Two camps, both alike in dignity The people on the telephone fall into one of two camps: technical and non-technical. Nobody, however, seems to be sure exactly how to pronounce the abbreviation “MySQL”. The people who made and host MySQL have been …

Read more

How to Find & Replace in MySQL

Sometimes, we need to find and replace certain strings or pieces of data in MySQL on the fly, for example if we’ve changed a Top Level domain (TLD) and want to update a bunch of links all in one go. For those times, the following command can be issued: The code from the Gist above …

Read more

How to Restart MySQL After Editing innodb Log Size

Sometimes, either because we’ve got a puny amount of RAM available, or because we’ve recently boosted available RAM, we want to allow MySQL a different amount of memory for it’s innodb logs. However, when we change this, restarting MySQLd can cause a hiccup or two. Namely, the MySQL service won’t restart. If this happens, what …

Read more

WordPress – Using MySQL to Update Specific Custom Fields

Some time ago, we told you how to Find & Replace Data using MySQL – today I am going to explain how to use this query to update specific custom fields in WordPress databases, in bulk, on-the-fly, without having to login, open, and edit every single WordPress post you’ve got! Remember, before doing anything to …

Read more