- Sep 18 Fri 2020 09:51
MySQL Array Simulation in Stored Procedure
- Jul 07 Tue 2020 15:44
Extracts, orders, and then prints grants for MySQL user accounts (pt-show-grants)
Extracts, orders, and then prints grants for MySQL user accounts (pt-show-grants)
# Extracts, orders, and then prints grants for MySQL user accounts
- Jun 29 Mon 2020 13:21
MySQL Stored Procedure - Nested Loop Example
MySQL Stored Procedure - Nested Loop Example
DELIMITER $$
- Jun 17 Wed 2020 09:39
Metabase H2 DB Migration to MySQL 5.7
Metabase H2 DB Migration to MySQL 5.7
#### On Aurora New MySQL ####################
- Mar 04 Wed 2020 14:00
Steps for Upgrading Percona-Toolkit to the Latest Version
MySQL 5.7 : Steps for Upgrading Percona-Toolkit to the Latest Version
pt-online-schema-change --version
- Feb 27 Thu 2020 16:42
MySQL Slave - Skip Replication for A Particular Table
MySQL Slave - Skip Replication for A Particular Table
mysql> stop slave sql_thread;
- Feb 26 Wed 2020 10:59
MySQL - Export & Import Table Data Based on the SQL Query
Export Table Data:
mysql -utest_usr -p"xxx"-h127.0.0.1 -P3306 -e "select * from test_usr.test_table where flag = 1" > test_usr.test_table.txt 2>/dev/null
- Feb 03 Mon 2020 15:08
MySQL Table Fragmentation Detection and De-fragmentation Implementation
check_table_fragmentation.sql
>>
MySQL > source check_table_fragmentation.sql
- Dec 17 Tue 2019 18:13
Multiple Log File Viewer (Linux Bash)
cat log_file_viewer.sh
>>
#################################
- Oct 28 Mon 2019 14:03
Solving MySQL slave lag Issues
There're MySQL global variable settings that will help for improving the speed of SQL apply in slave db.
That would solve the issue of slave lagging.