Si sale este error: Last_Error: Relay log read failure: Could not parse relay log event entry. The possible reasons are: the master’s binary log is corrupted (you can check this by running ‘mysqlbinlog’ on the binary log), the slave’s relay log...
-mysqldump: Unknown table ‘COLUMN_STATISTICS’ in information_schema: Esto me ha pasado usando el Mysql client 8.0 para hacer un dump de un servidor 5.7. Esto se puede des-habilitar pasando lo como parámetro: mysqldump –column-statistics=0 Si se esta...
Al incrementar por necesisdad el numero de conexiones por defecto de Mysql en un Ubuntu 16.04 : max_connections = 300 Cuando lo consultabamos en el propio MySQL nos decia que eran 214: mysql> show variables like ‘max_connections’;...
-Mysql: Como importar solo una tabla de un full dump: Se puede hacer de una forma sencilla y en una sola linea: zgrep ^»INSERT INTO \`TABLE_NAME» mysqldump-full.gz | mysql DB_NAME