Welcome to the MySQL Knowledge Base and Tutorial
phpMyAdmin : What is phpMyAdmin?

Read More »
How Does MySQL Replication Works?

Read More »
mysqldump - MySQL Database Backup and restore program
What is mysqldump The mysqldump client is a utility that performs logical backups, producing a set of SQL statements that can be runRead More »
How to reset mysql root password
it is quiet easy to reset mysql root password, here are the steps SSH as root to your machine TurnRead More »
save mysql sqery output into txt file

Read More »
Reset mysql root password

Read More »
MySQL Master-Master-Slave-Slave Replication

Read More »
convert time in seconds to HH:MM:SS format in MySQL?
You can use MySQL function SEC_TO_TIME(). Example: SELECT SEC_TO_TIME(2378); Output is: 00:39:38Read More »
Resolved : mysql replica : Relay log read failure: Could not parse relay log event entry.
I’m not sure what the root cause may be. But to recover from this situation, you’d want to instruct MySQLRead More »
Failed to connect to MySQL-asterisk
Files need to check are: /etc/asterisk/res_odbc.conf /etc/odbcinst.ini To resolve this , You have to check the correct configuration of aboveRead More »
Import large csv file using phpMyAdmin

Read More »
MySQL Skip Duplicate Replication Errors : skip replication error

Read More »
unauthenticated user in MYSQL process list
Some time in mysql process list you may see “unauthenticated user” increasing up it look like: | 1004 |Read More »
Managing Views in MySQL : Showing mysql view definition
Summary: in this tutorial, you will learn how to manage views in MySQL including displaying, modifying and removing views. Show view definitionRead More »
mysql create user and grant permission
Create user CREATE USER ‘super’@’%’ IDENTIFIED BY PASSWORD ‘*01A6717B58FF5C7EAFFF6CB7C96F7428EA65FE4C’; Grant Permission: GRANT ALL ON *.* TO easy@’10.0.20.212′; Flush Privileges: FLUSH PRIVILEGESRead More »