Category: MySQL

MySQL Binlog Recovery Guide

Query the logs to locate the recovery starting point and export the SQL: Here we use the 10_163_0_72-bin.000009 binlog as an example:

mysqlbinlog –no-defaults –start-datetime="2019-01-11 18:38:56" –database=superstar /home/10_163_0_72-bi …

How to Compile and Install MySQL 5.7.13 on CentOS 7 Step by Step

MySQL 5.7 Key Features: Better Performance
With better optimization for multi-core CPUs, solid-state drives, and locking, 1 million QPS is no longer MySQL’s goal—whether the next version can reach 2 million QPS is what users care more about. Better InnoDB Storage Engine and More Robust Replication
Replication brings data integri …

Clipping Path King Int

Clipping path king is one of the best graphics design provided company.clipping path and photo masking services are provided here. High skilled graphic designer team is providing their service …

How to Delete All Empty Rows in MySQL Tables

Sometimes a table contains many empty rows that you may want to delete, or you need to delete all rows where a certain field equals a specific value. You can use the following command.

Command:
delete from tabl where `codes` = ''; # Delete rows in the tabl table where the codes field is empty …

MySQL High Availability Architecture: MHA

Introduction:

MHA (Master High Availability) is a relatively mature solution for MySQL high availability, developed by youshimaton from DeNA Japan (now at Facebook). It is an excellent high-availability software for failover and master-slave promotion in MySQL high-availability environments. …