(Daniel Guzmán Burgos) Some say that the best password is the one you don’t have to remember. That’s possible with MySQL, thanks to the auth_socket plugin and its MariaDB version unix_socket.
Tag: Open Source
MySQL Random Password Generation
(Dave Stokes) Many years ago I was working at a university and had to create accounts for students every semester. Each account needed a random password and there were several hacks used to do that.
Understanding Hash Joins in MySQL 8
(Tibor Korocz) In MySQL 8.0.18 there is a new feature called Hash Joins, and I wanted to see how it works and in which situations it can help us. Here you can find a nice detailed explanation about how it works under the hood.
How to kill certain connections to a MySQL database
(Alena Subotina) Maintenance of databases or servers is quite often performed by database administrators at night. But these routines sometimes get blocked by long-running queries or applications that hang onto locks much longer than expected.
Column Histograms on Percona Server and MySQL 8.0
(Corrado Pandiani) From time to time you may have experienced that MySQL was not able to find the best execution plan for a query. You felt the query should have been faster. You felt that something didn’t work, but you didn’t realize exactly what.
A beginner’s guide to database deadlock
(Vlad Mihalcea) In this article, we are going to see how a deadlock can occur in a relational database system, and how Oracle, SQL Server, PostgreSQL, or MySQL recover from a deadlock situation.
Setup 2 MySQL InnoDB Clusters on 2 DCs and link them for DR
(Frederic Descamps) This article is an update of a previous post explaining how to setup a second cluster on a second data center to be used as disaster recovery (or to run some off site queries, like long reports, etc..).
Using Explain Analyze in MySQL 8
(Tibor Korocz) In MySQL 8.0.18 there is a new feature called Explain Analyze when for many years we mostly had only the traditional Explain. I know there are different formats, but those based on the same information just show it in a different format with some extra details.
A Guide to MySQL Galera Cluster Streaming Replication: Part Two
(Paul Namuag) In the first part of this blog we provided an overview of the new Streaming Replication feature in MySQL Galera Cluster. In this blog we will show you how to enable it and take a look at the results.
Best Practices to Secure Your MySQL Databases
(Robert Agar) MySQL is one of the most popular database platforms in the world. It is widely used to power eCommerce sites and web applications that are essential components of many companies’ business strategies.