Versioning your code, your database structure, or your infrastructure as code, is essential. But versioning comes with a potential problem: fixing mistakes can be tricky. Here I propose solutions for the most common problems. Uncommitted changes Changes were made to...
Federico Razzoli
Advanced MariaDB features that developers love
Federico Razzoli at PHP Cambridge 2022
Creative uses of triggers: Things you people wouldn’t believe
Federico Razzoli at FOSDEM 2022
MariaDB/MySQL: Working with MD5 or other hashes
Hashes are normally represented in a human-readable format. The easiest way to work with them is to just insert this human-readable form into a table, as a string. But that is not an efficient way to work with hashes. This article explains how to read and write hashes...
How to test database backups
Do you remember the infamous GitLab database incident in 2017? Three backup strategies in place... but no test. When they needed to quickly restore a backup there was none. You don't want to be in that situation. Here's a high level discussion about how to test...
MariaDB: The “Regexp AND LIKE” optimisation
MariaDB, like most databases, allow to run queries that use regular expressions in the WHERE clause. While this is powerful, a problem with using a regexp in a database is that it can't take advantage of an index. The reason is simple: the query optimiser can't...
A checklist for Database backup automation
A typical question we ask new customers is: do you have proper backups in place? Some of them have some form of backups, but answer no. The others give a wrong answer. Here's a checklist of things you should have in place. Checklist If you want to have reliable,...
MariaDB: WITH TIES syntax
MariaDB implemented the WITH TIES syntax in version 10.6. This feature may not be a ground breaker, but it is useful in some cases and it increases compatibility with some other DBMSs. Let's see what it does, and what use cases it has. Some history MariaDB (just like...
How to delete duplicate rows in MariaDB
Deleting duplicate values can be necessary, for example, when we realise that a column (or a combination of columns) should be UNIQUE. If the column existed in production for some time, it's possible that it now contains some duplicate values, so trying to create a...
The importance of maintenance windows
Maintenance windows are periods of time during which a service is made unavailable to allow for maintenance operations. Maintenance windows are announced with some advance, so that users do not get angry and can try to use the service before or after the maintenance...