MySQL Commands snippets

From DevOps Notebook
Revision as of 15:33, 16 July 2021 by MilosZ (talk | contribs)

Get limited number of records from mysqldump
MySQL all databases backup in separate files
Restore single MySQL table from a full database mysqldump backup file
mysqldump all tables from database in separate files


Disable query cache without mysql restart

mysql> SET GLOBAL query_cache_size = 0;

Increase MySQL Connections without restart

mysql> show variables like 'max_connections';
mysql> SET GLOBAL max_connections = 1000;