Viewing articles tagged 'mysql'
When you hear in the industry the word index, they often mean a B-tree index. Most of the MySQL...
If you have a mysql authentication issues related to the error below you can take the following...
You can use below command to connect to a mysql dockerized version: mysql -u root -h 127.0.0.1...
In this short tutorial we will learn how to configure the following: Enable general log in...
The error "Host is not allowed to connect to this MariaDB server" usually points to a remote...
Most modern applications these days including popular CMS use databases. As databases grow in...
Below we want to outline differences between InnoDB and MyIsam engine in mysql. InnoDB...
We can use this command to export the databases as single files: mysql -uroot -p -e 'show...
#!/bin/bash usage() {echo "$0 [mysql_parameters] <SQL files...>" >&2echo " Restores...
This is a short tutorial on how to check if mysql binary log is enabled and activate it, if it is...