SlideShare a Scribd company logo
MySQLCheatSheet
MySQLisanopen-sourcerelationaldatabasemanagementsystem(RDBMS).
bylam
󰅂
LiveMonitoringof
MySQL
Therearetwousefultools:
mytop
innotop
with"mytop"beinganown
Debianpackage,while
"innotop"isincludedinthe
"mysql-client"package.
Frombothinnotophasthe
moreadvancedfunctionality.
Bothneedtobecalledwith
credentialstoconnecttothe
database:
mytop -u <user> -p<pas
sword>
innotop -u <user> -p<p
assword>
󰅂ShowMySQLStatus
Youcangetaverysimple
statusbyjustentering"s"in
the"mysql"commandline
clientprompt:
mysql> s
Youcanshowthereplication
statususing
SHOW SLAVE STATUS G
SHOW MASTER STATUS G
Notethatthe"G"insteadof
";"justmakestheoutputmore
readable.Ifyouhave
configuredslavestoreport
namesyoucanlistthemon
themasterwith:
SHOW SLAVE HOSTS;
󰅂CheckInnoDBstatus
show /*!50000 ENGINE
*/ INNODB STATUS;
󰅂
List
Databases/Tables/C
olums
Youcaneitherusethe
"mysqlshow"tool:
mysqlshow
# List all d
atabases
mysqlshow <database>
# List all t
ables of the given data
base
mysqlshow <database> <t
able> # List all c
olumns of the given tab
le in the given DB
Andyoucanalsodoitusing
queries:
SHOW DATABASES;
USE <database>;
SHOW TABLES;
DESCRIBE <table>;
󰅂
CheckandChange
LiveConfiguration
Parameters
Notethatyoucannotchange
allexistingparameters.
Somelike
innodb_pool_bufferrequirea
DBrestart.
show variables;
# L
ist all configuration
settings
show variables like 'k
ey_buffer_size'; # L
ist a specific paramet
er
set global key_buffer_
size=100000000; # S
et a specific paramete
r
󰅂
MySQLParameter
Optimization
YoucancheckMySQL
parametersofarunning
instanceusingtoolslike
MySQLTuner
MySQLTuning-Primer
pt-variable-advisor
Alsohavealookatthis
MySQLconfigparameter
explanation.
󰅂
RemoteMySQL
DumpandImport
Thefollowingcommand
allowsdumpingadatabase
fromonesourcehostthat
doesn'tseethetargethost
whenexecutedonathirdhost
thatcanaccessboth.Ifboth
hostscanseeeachotherand
onehasSSHaccesstothe
󰅂
ImportaCSVfileinto
MySQL
LOAD DATA IN '<CSV fil
ename>' INTO TABLE <ta
󰏪
󰅢
CheatSheetMaker.com SimpleCheatSheet.com
# Finally ensure to ed
it my.cnf to make the
change persistent
otheryoucansimplydropone
ofthesshcalls.
ssh <user@source host>
"mysqldump --single-tra
nsaction -u root --pass
word=<DB root pwd> <DB
name>" | ssh <user@targ
et host> "mysql -u roo
t --password=<DB root p
wd> <DB name>"
ble name> FIELDS TERMI
NATED BY ',' (<name o
f column #1>,<<name o
f column #2>,<...>);
󰅂
MySQLPager-
OutputHandling
Using"PAGER"orPyoucan
controloutputhandling.
Insteadofhaving10klines
scrollingbyyoucanwrite
everythingtoafileoruse
"less"toscrollthroughitfor
example.Touselessissue
pager less
Pageoutputintoascript
pager /home/joe/myscrip
t.sh
OrifyouhavePercona
installedgetatree-like
"EXPLAIN"outputwith
pager mk-visual-explain
andthenrunthe"EXPLAIN"
query.
󰏪
󰅢
Ad

More Related Content

What's hot (15)

Installing apache sqoop
Installing apache sqoopInstalling apache sqoop
Installing apache sqoop
Enrique Davila
 
Installing hadoop on ubuntu 16
Installing hadoop on ubuntu 16Installing hadoop on ubuntu 16
Installing hadoop on ubuntu 16
Enrique Davila
 
Multiple instance on windows
Multiple instance on windowsMultiple instance on windows
Multiple instance on windows
Vasudeva Rao
 
Caching and invalidating with managed store
Caching and invalidating with managed storeCaching and invalidating with managed store
Caching and invalidating with managed store
irfan1008
 
Chef solo the beginning
Chef solo the beginning Chef solo the beginning
Chef solo the beginning
A.K.M. Ahsrafuzzaman
 
Cassandra installation
Cassandra installationCassandra installation
Cassandra installation
PritamKathar
 
Mapping and listing in mule
Mapping and listing in muleMapping and listing in mule
Mapping and listing in mule
Khan625
 
Mule Clustering
Mule Clustering Mule Clustering
Mule Clustering
Vijay Shan
 
MySQL Audit using Percona audit plugin and ELK
MySQL Audit using Percona audit plugin and ELKMySQL Audit using Percona audit plugin and ELK
MySQL Audit using Percona audit plugin and ELK
YoungHeon (Roy) Kim
 
Quartz component in mule demo
Quartz component in mule demoQuartz component in mule demo
Quartz component in mule demo
Sudha Ch
 
Powerful and flexible templates with Twig
Powerful and flexible templates with Twig Powerful and flexible templates with Twig
Powerful and flexible templates with Twig
Michael Peacock
 
Caching & validating
Caching & validatingCaching & validating
Caching & validating
Son Nguyen
 
NodeJS "Web en tiempo real"
NodeJS "Web en tiempo real"NodeJS "Web en tiempo real"
NodeJS "Web en tiempo real"
Sebastián Gamboa
 
Ansible intro
Ansible introAnsible intro
Ansible intro
Hsi-Kai Wang
 
Mapping and listing with mule
Mapping and listing with muleMapping and listing with mule
Mapping and listing with mule
Praneethchampion
 
Installing apache sqoop
Installing apache sqoopInstalling apache sqoop
Installing apache sqoop
Enrique Davila
 
Installing hadoop on ubuntu 16
Installing hadoop on ubuntu 16Installing hadoop on ubuntu 16
Installing hadoop on ubuntu 16
Enrique Davila
 
Multiple instance on windows
Multiple instance on windowsMultiple instance on windows
Multiple instance on windows
Vasudeva Rao
 
Caching and invalidating with managed store
Caching and invalidating with managed storeCaching and invalidating with managed store
Caching and invalidating with managed store
irfan1008
 
Cassandra installation
Cassandra installationCassandra installation
Cassandra installation
PritamKathar
 
Mapping and listing in mule
Mapping and listing in muleMapping and listing in mule
Mapping and listing in mule
Khan625
 
Mule Clustering
Mule Clustering Mule Clustering
Mule Clustering
Vijay Shan
 
MySQL Audit using Percona audit plugin and ELK
MySQL Audit using Percona audit plugin and ELKMySQL Audit using Percona audit plugin and ELK
MySQL Audit using Percona audit plugin and ELK
YoungHeon (Roy) Kim
 
Quartz component in mule demo
Quartz component in mule demoQuartz component in mule demo
Quartz component in mule demo
Sudha Ch
 
Powerful and flexible templates with Twig
Powerful and flexible templates with Twig Powerful and flexible templates with Twig
Powerful and flexible templates with Twig
Michael Peacock
 
Caching & validating
Caching & validatingCaching & validating
Caching & validating
Son Nguyen
 
Mapping and listing with mule
Mapping and listing with muleMapping and listing with mule
Mapping and listing with mule
Praneethchampion
 

Similar to MySql cheat sheet (20)

My sql administration
My sql administrationMy sql administration
My sql administration
Mohd yasin Karim
 
Mater,slave on mysql
Mater,slave on mysqlMater,slave on mysql
Mater,slave on mysql
Vasudeva Rao
 
My two cents about Mysql backup
My two cents about Mysql backupMy two cents about Mysql backup
My two cents about Mysql backup
Andrejs Vorobjovs
 
Sah
SahSah
Sah
sahul azzez m.i
 
zLAMP
zLAMPzLAMP
zLAMP
Abdul Jaleel Kavungal
 
Mysql ppt
Mysql pptMysql ppt
Mysql ppt
Sanmuga Nathan
 
Using Mysql.pptx
Using Mysql.pptxUsing Mysql.pptx
Using Mysql.pptx
StephenEfange3
 
Mysql administration
Mysql administrationMysql administration
Mysql administration
beben benzy
 
Mysql S&M
Mysql S&MMysql S&M
Mysql S&M
Rob Kaufman
 
Multiple instances on linux
Multiple instances on linuxMultiple instances on linux
Multiple instances on linux
Vasudeva Rao
 
My SQL 101
My SQL 101My SQL 101
My SQL 101
Dave Stokes
 
Basic Knowledge on MySql Replication
Basic Knowledge on MySql ReplicationBasic Knowledge on MySql Replication
Basic Knowledge on MySql Replication
Tasawr Interactive
 
Mysql all
Mysql allMysql all
Mysql all
Prof. Wim Van Criekinge
 
Sql installation
Sql installationSql installation
Sql installation
Balakumaran Arunachalam
 
Mysql
MysqlMysql
Mysql
abhijith
 
PHP - Intriduction to MySQL And PHP
PHP - Intriduction to MySQL And PHPPHP - Intriduction to MySQL And PHP
PHP - Intriduction to MySQL And PHP
Vibrant Technologies & Computers
 
MySQL Replication Basics -Ohio Linux Fest 2016
MySQL Replication Basics -Ohio Linux Fest 2016MySQL Replication Basics -Ohio Linux Fest 2016
MySQL Replication Basics -Ohio Linux Fest 2016
Dave Stokes
 
Php classes in mumbai
Php classes in mumbaiPhp classes in mumbai
Php classes in mumbai
aadi Surve
 
Capistrano
CapistranoCapistrano
Capistrano
Bryan McLellan
 
Nginx 0.8.x 安装手册
Nginx 0.8.x 安装手册Nginx 0.8.x 安装手册
Nginx 0.8.x 安装手册
Yiwei Ma
 
Ad

More from Lam Hoang (14)

Py spark cheat sheet by cheatsheetmaker.com
Py spark cheat sheet by cheatsheetmaker.comPy spark cheat sheet by cheatsheetmaker.com
Py spark cheat sheet by cheatsheetmaker.com
Lam Hoang
 
VS Code cheat sheet
VS Code cheat sheetVS Code cheat sheet
VS Code cheat sheet
Lam Hoang
 
PostgreSql cheat sheet
PostgreSql cheat sheetPostgreSql cheat sheet
PostgreSql cheat sheet
Lam Hoang
 
Nginx cheat sheet
Nginx cheat sheetNginx cheat sheet
Nginx cheat sheet
Lam Hoang
 
Html cheat sheet
Html cheat sheetHtml cheat sheet
Html cheat sheet
Lam Hoang
 
Git cheat sheet
Git cheat sheetGit cheat sheet
Git cheat sheet
Lam Hoang
 
Django cheat sheet
Django cheat sheetDjango cheat sheet
Django cheat sheet
Lam Hoang
 
Css cheat sheet
Css cheat sheetCss cheat sheet
Css cheat sheet
Lam Hoang
 
Apache cheat sheet
Apache cheat sheetApache cheat sheet
Apache cheat sheet
Lam Hoang
 
Battle chatter minecraft 1.4.7 mod
Battle chatter minecraft 1.4.7 modBattle chatter minecraft 1.4.7 mod
Battle chatter minecraft 1.4.7 mod
Lam Hoang
 
On thi dai_hoc_mon_van_2010 (1)
On thi dai_hoc_mon_van_2010 (1)On thi dai_hoc_mon_van_2010 (1)
On thi dai_hoc_mon_van_2010 (1)
Lam Hoang
 
ôn thi môn văn
ôn thi môn vănôn thi môn văn
ôn thi môn văn
Lam Hoang
 
On thi dai_hoc_mon_van_2010
On thi dai_hoc_mon_van_2010On thi dai_hoc_mon_van_2010
On thi dai_hoc_mon_van_2010
Lam Hoang
 
giáo trình c căn bản
giáo trình c căn bảngiáo trình c căn bản
giáo trình c căn bản
Lam Hoang
 
Py spark cheat sheet by cheatsheetmaker.com
Py spark cheat sheet by cheatsheetmaker.comPy spark cheat sheet by cheatsheetmaker.com
Py spark cheat sheet by cheatsheetmaker.com
Lam Hoang
 
VS Code cheat sheet
VS Code cheat sheetVS Code cheat sheet
VS Code cheat sheet
Lam Hoang
 
PostgreSql cheat sheet
PostgreSql cheat sheetPostgreSql cheat sheet
PostgreSql cheat sheet
Lam Hoang
 
Nginx cheat sheet
Nginx cheat sheetNginx cheat sheet
Nginx cheat sheet
Lam Hoang
 
Html cheat sheet
Html cheat sheetHtml cheat sheet
Html cheat sheet
Lam Hoang
 
Git cheat sheet
Git cheat sheetGit cheat sheet
Git cheat sheet
Lam Hoang
 
Django cheat sheet
Django cheat sheetDjango cheat sheet
Django cheat sheet
Lam Hoang
 
Css cheat sheet
Css cheat sheetCss cheat sheet
Css cheat sheet
Lam Hoang
 
Apache cheat sheet
Apache cheat sheetApache cheat sheet
Apache cheat sheet
Lam Hoang
 
Battle chatter minecraft 1.4.7 mod
Battle chatter minecraft 1.4.7 modBattle chatter minecraft 1.4.7 mod
Battle chatter minecraft 1.4.7 mod
Lam Hoang
 
On thi dai_hoc_mon_van_2010 (1)
On thi dai_hoc_mon_van_2010 (1)On thi dai_hoc_mon_van_2010 (1)
On thi dai_hoc_mon_van_2010 (1)
Lam Hoang
 
ôn thi môn văn
ôn thi môn vănôn thi môn văn
ôn thi môn văn
Lam Hoang
 
On thi dai_hoc_mon_van_2010
On thi dai_hoc_mon_van_2010On thi dai_hoc_mon_van_2010
On thi dai_hoc_mon_van_2010
Lam Hoang
 
giáo trình c căn bản
giáo trình c căn bảngiáo trình c căn bản
giáo trình c căn bản
Lam Hoang
 
Ad

Recently uploaded (20)

Personal Protective Efsgfgsffquipment.ppt
Personal Protective Efsgfgsffquipment.pptPersonal Protective Efsgfgsffquipment.ppt
Personal Protective Efsgfgsffquipment.ppt
ganjangbegu579
 
Lecture - 7 Canals of the topic of the civil engineering
Lecture - 7  Canals of the topic of the civil engineeringLecture - 7  Canals of the topic of the civil engineering
Lecture - 7 Canals of the topic of the civil engineering
MJawadkhan1
 
Applications of Centroid in Structural Engineering
Applications of Centroid in Structural EngineeringApplications of Centroid in Structural Engineering
Applications of Centroid in Structural Engineering
suvrojyotihalder2006
 
Slide share PPT of NOx control technologies.pptx
Slide share PPT of  NOx control technologies.pptxSlide share PPT of  NOx control technologies.pptx
Slide share PPT of NOx control technologies.pptx
vvsasane
 
2.3 Genetically Modified Organisms (1).ppt
2.3 Genetically Modified Organisms (1).ppt2.3 Genetically Modified Organisms (1).ppt
2.3 Genetically Modified Organisms (1).ppt
rakshaiya16
 
Design of Variable Depth Single-Span Post.pdf
Design of Variable Depth Single-Span Post.pdfDesign of Variable Depth Single-Span Post.pdf
Design of Variable Depth Single-Span Post.pdf
Kamel Farid
 
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
ijflsjournal087
 
Construction Materials (Paints) in Civil Engineering
Construction Materials (Paints) in Civil EngineeringConstruction Materials (Paints) in Civil Engineering
Construction Materials (Paints) in Civil Engineering
Lavish Kashyap
 
Transport modelling at SBB, presentation at EPFL in 2025
Transport modelling at SBB, presentation at EPFL in 2025Transport modelling at SBB, presentation at EPFL in 2025
Transport modelling at SBB, presentation at EPFL in 2025
Antonin Danalet
 
acid base ppt and their specific application in food
acid base ppt and their specific application in foodacid base ppt and their specific application in food
acid base ppt and their specific application in food
Fatehatun Noor
 
Frontend Architecture Diagram/Guide For Frontend Engineers
Frontend Architecture Diagram/Guide For Frontend EngineersFrontend Architecture Diagram/Guide For Frontend Engineers
Frontend Architecture Diagram/Guide For Frontend Engineers
Michael Hertzberg
 
Using the Artificial Neural Network to Predict the Axial Strength and Strain ...
Using the Artificial Neural Network to Predict the Axial Strength and Strain ...Using the Artificial Neural Network to Predict the Axial Strength and Strain ...
Using the Artificial Neural Network to Predict the Axial Strength and Strain ...
Journal of Soft Computing in Civil Engineering
 
Working with USDOT UTCs: From Conception to Implementation
Working with USDOT UTCs: From Conception to ImplementationWorking with USDOT UTCs: From Conception to Implementation
Working with USDOT UTCs: From Conception to Implementation
Alabama Transportation Assistance Program
 
hypermedia_system_revisit_roy_fielding .
hypermedia_system_revisit_roy_fielding .hypermedia_system_revisit_roy_fielding .
hypermedia_system_revisit_roy_fielding .
NABLAS株式会社
 
Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...
Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...
Prediction of Flexural Strength of Concrete Produced by Using Pozzolanic Mate...
Journal of Soft Computing in Civil Engineering
 
Slide share PPT of SOx control technologies.pptx
Slide share PPT of SOx control technologies.pptxSlide share PPT of SOx control technologies.pptx
Slide share PPT of SOx control technologies.pptx
vvsasane
 
Machine foundation notes for civil engineering students
Machine foundation notes for civil engineering studentsMachine foundation notes for civil engineering students
Machine foundation notes for civil engineering students
DYPCET
 
Smart City is the Future EN - 2024 Thailand Modify V1.0.pdf
Smart City is the Future EN - 2024 Thailand Modify V1.0.pdfSmart City is the Future EN - 2024 Thailand Modify V1.0.pdf
Smart City is the Future EN - 2024 Thailand Modify V1.0.pdf
PawachMetharattanara
 
Machine Learning basics POWERPOINT PRESENETATION
Machine Learning basics POWERPOINT PRESENETATIONMachine Learning basics POWERPOINT PRESENETATION
Machine Learning basics POWERPOINT PRESENETATION
DarrinBright1
 
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdfLittle Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
gori42199
 
Personal Protective Efsgfgsffquipment.ppt
Personal Protective Efsgfgsffquipment.pptPersonal Protective Efsgfgsffquipment.ppt
Personal Protective Efsgfgsffquipment.ppt
ganjangbegu579
 
Lecture - 7 Canals of the topic of the civil engineering
Lecture - 7  Canals of the topic of the civil engineeringLecture - 7  Canals of the topic of the civil engineering
Lecture - 7 Canals of the topic of the civil engineering
MJawadkhan1
 
Applications of Centroid in Structural Engineering
Applications of Centroid in Structural EngineeringApplications of Centroid in Structural Engineering
Applications of Centroid in Structural Engineering
suvrojyotihalder2006
 
Slide share PPT of NOx control technologies.pptx
Slide share PPT of  NOx control technologies.pptxSlide share PPT of  NOx control technologies.pptx
Slide share PPT of NOx control technologies.pptx
vvsasane
 
2.3 Genetically Modified Organisms (1).ppt
2.3 Genetically Modified Organisms (1).ppt2.3 Genetically Modified Organisms (1).ppt
2.3 Genetically Modified Organisms (1).ppt
rakshaiya16
 
Design of Variable Depth Single-Span Post.pdf
Design of Variable Depth Single-Span Post.pdfDesign of Variable Depth Single-Span Post.pdf
Design of Variable Depth Single-Span Post.pdf
Kamel Farid
 
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
6th International Conference on Big Data, Machine Learning and IoT (BMLI 2025)
ijflsjournal087
 
Construction Materials (Paints) in Civil Engineering
Construction Materials (Paints) in Civil EngineeringConstruction Materials (Paints) in Civil Engineering
Construction Materials (Paints) in Civil Engineering
Lavish Kashyap
 
Transport modelling at SBB, presentation at EPFL in 2025
Transport modelling at SBB, presentation at EPFL in 2025Transport modelling at SBB, presentation at EPFL in 2025
Transport modelling at SBB, presentation at EPFL in 2025
Antonin Danalet
 
acid base ppt and their specific application in food
acid base ppt and their specific application in foodacid base ppt and their specific application in food
acid base ppt and their specific application in food
Fatehatun Noor
 
Frontend Architecture Diagram/Guide For Frontend Engineers
Frontend Architecture Diagram/Guide For Frontend EngineersFrontend Architecture Diagram/Guide For Frontend Engineers
Frontend Architecture Diagram/Guide For Frontend Engineers
Michael Hertzberg
 
hypermedia_system_revisit_roy_fielding .
hypermedia_system_revisit_roy_fielding .hypermedia_system_revisit_roy_fielding .
hypermedia_system_revisit_roy_fielding .
NABLAS株式会社
 
Slide share PPT of SOx control technologies.pptx
Slide share PPT of SOx control technologies.pptxSlide share PPT of SOx control technologies.pptx
Slide share PPT of SOx control technologies.pptx
vvsasane
 
Machine foundation notes for civil engineering students
Machine foundation notes for civil engineering studentsMachine foundation notes for civil engineering students
Machine foundation notes for civil engineering students
DYPCET
 
Smart City is the Future EN - 2024 Thailand Modify V1.0.pdf
Smart City is the Future EN - 2024 Thailand Modify V1.0.pdfSmart City is the Future EN - 2024 Thailand Modify V1.0.pdf
Smart City is the Future EN - 2024 Thailand Modify V1.0.pdf
PawachMetharattanara
 
Machine Learning basics POWERPOINT PRESENETATION
Machine Learning basics POWERPOINT PRESENETATIONMachine Learning basics POWERPOINT PRESENETATION
Machine Learning basics POWERPOINT PRESENETATION
DarrinBright1
 
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdfLittle Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
Little Known Ways To 3 Best sites to Buy Linkedin Accounts.pdf
gori42199
 

MySql cheat sheet

  • 1. MySQLCheatSheet MySQLisanopen-sourcerelationaldatabasemanagementsystem(RDBMS). bylam 󰅂 LiveMonitoringof MySQL Therearetwousefultools: mytop innotop with"mytop"beinganown Debianpackage,while "innotop"isincludedinthe "mysql-client"package. Frombothinnotophasthe moreadvancedfunctionality. Bothneedtobecalledwith credentialstoconnecttothe database: mytop -u <user> -p<pas sword> innotop -u <user> -p<p assword> 󰅂ShowMySQLStatus Youcangetaverysimple statusbyjustentering"s"in the"mysql"commandline clientprompt: mysql> s Youcanshowthereplication statususing SHOW SLAVE STATUS G SHOW MASTER STATUS G Notethatthe"G"insteadof ";"justmakestheoutputmore readable.Ifyouhave configuredslavestoreport namesyoucanlistthemon themasterwith: SHOW SLAVE HOSTS; 󰅂CheckInnoDBstatus show /*!50000 ENGINE */ INNODB STATUS; 󰅂 List Databases/Tables/C olums Youcaneitherusethe "mysqlshow"tool: mysqlshow # List all d atabases mysqlshow <database> # List all t ables of the given data base mysqlshow <database> <t able> # List all c olumns of the given tab le in the given DB Andyoucanalsodoitusing queries: SHOW DATABASES; USE <database>; SHOW TABLES; DESCRIBE <table>; 󰅂 CheckandChange LiveConfiguration Parameters Notethatyoucannotchange allexistingparameters. Somelike innodb_pool_bufferrequirea DBrestart. show variables; # L ist all configuration settings show variables like 'k ey_buffer_size'; # L ist a specific paramet er set global key_buffer_ size=100000000; # S et a specific paramete r 󰅂 MySQLParameter Optimization YoucancheckMySQL parametersofarunning instanceusingtoolslike MySQLTuner MySQLTuning-Primer pt-variable-advisor Alsohavealookatthis MySQLconfigparameter explanation. 󰅂 RemoteMySQL DumpandImport Thefollowingcommand allowsdumpingadatabase fromonesourcehostthat doesn'tseethetargethost whenexecutedonathirdhost thatcanaccessboth.Ifboth hostscanseeeachotherand onehasSSHaccesstothe 󰅂 ImportaCSVfileinto MySQL LOAD DATA IN '<CSV fil ename>' INTO TABLE <ta 󰏪 󰅢
  • 2. CheatSheetMaker.com SimpleCheatSheet.com # Finally ensure to ed it my.cnf to make the change persistent otheryoucansimplydropone ofthesshcalls. ssh <user@source host> "mysqldump --single-tra nsaction -u root --pass word=<DB root pwd> <DB name>" | ssh <user@targ et host> "mysql -u roo t --password=<DB root p wd> <DB name>" ble name> FIELDS TERMI NATED BY ',' (<name o f column #1>,<<name o f column #2>,<...>); 󰅂 MySQLPager- OutputHandling Using"PAGER"orPyoucan controloutputhandling. Insteadofhaving10klines scrollingbyyoucanwrite everythingtoafileoruse "less"toscrollthroughitfor example.Touselessissue pager less Pageoutputintoascript pager /home/joe/myscrip t.sh OrifyouhavePercona installedgetatree-like "EXPLAIN"outputwith pager mk-visual-explain andthenrunthe"EXPLAIN" query. 󰏪 󰅢
  翻译: