sql >> Databasteknik >  >> RDS >> Mysql

Hur man optimerar MySQL/MariaDB-tabeller

Kommandona från det här inlägget kommer att fungera på MySQL- och MariaDB-servern.

Det är en bra idé att utföra databasunderhåll då och då. En sak är att göra är att optimera tabellerna. Vi har två alternativ:

1. OPTIMERA TABELL kommando

Omorganiserar den fysiska lagringen av tabelldata och tillhörande indexdata, för att minska lagringsutrymmet och förbättra I/O-effektiviteten vid åtkomst till tabellen. De exakta ändringarna som görs i varje tabell beror på vilken lagringsmotor som används av den tabellen.

Se nedan hur du använder det.

root@web [~]# mysql
Welcome to the MariaDB monitor.  Commands end with ; or \g.
Your MariaDB connection id is 3670
Server version: 10.1.22-MariaDB MariaDB Server

Copyright (c) 2000, 2016, Oracle, MariaDB Corporation Ab and others.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

MariaDB [(none)]> use roundcube
Reading table information for completion of table and column names
You can turn off this feature to get a quicker startup with -A

Database changed
MariaDB [roundcube]> OPTIMIZE TABLE cache;
+-----------------+----------+----------+-------------------------------------------------------------------+
| Table           | Op       | Msg_type | Msg_text                                                          |
+-----------------+----------+----------+-------------------------------------------------------------------+
| roundcube.cache | optimize | note     | Table does not support optimize, doing recreate + analyze instead |
| roundcube.cache | optimize | status   | OK                                                                |
+-----------------+----------+----------+-------------------------------------------------------------------+
2 rows in set (0.04 sec)

MariaDB [roundcube]> quit
Bye
root@web [~]#

Om du vill köra kommandot för flera tabeller från samma databas, använd:

OPTIMIZE TABLE table1,table2,table3;

OPTIMIZE TABLE fungerar med InnoDB-, MyISAM- och ARCHIVE-tabeller.

2. mysqlcheck kommando

Mysqlcheck-klienten utför tabellunderhåll:Den kontrollerar, reparerar, optimerar eller analyserar tabeller.

För att kontrollera en tabell använd:mysqlcheck db_name tbl_name
För att kontrollera alla tabeller från en databas:mysqlcheck –databases db_name
Så här kontrollerar du tabellerna från alla databaser på servern:mysqlcheck –all-databases

Observera att databastabeller är låsta medan mysqlcheck körs. Inga poster kan infogas eller raderas från tabellerna.

root@web [~]# mysqlcheck roundcube
roundcube.cache                                    OK
roundcube.cache_index                              OK
roundcube.cache_messages                           OK
roundcube.cache_shared                             OK
roundcube.cache_thread                             OK
roundcube.contactgroupmembers                      OK
roundcube.contactgroups                            OK
roundcube.contacts                                 OK
roundcube.cp_schema_version                        OK
roundcube.dictionary                               OK
roundcube.identities                               OK
roundcube.searches                                 OK
roundcube.session                                  OK
roundcube.system                                   OK
roundcube.users                                    OK
root@web [~]# 

För att optimera en databas, använd:

root@web [~]# mysqlcheck -o roundcube
roundcube.cache
note     : Table does not support optimize, doing recreate + analyze instead
status   : OK
roundcube.cache_index
note     : Table does not support optimize, doing recreate + analyze instead
status   : OK
roundcube.cache_messages
note     : Table does not support optimize, doing recreate + analyze instead
status   : OK
roundcube.cache_shared
note     : Table does not support optimize, doing recreate + analyze instead
status   : OK
roundcube.cache_thread
note     : Table does not support optimize, doing recreate + analyze instead
status   : OK
roundcube.contactgroupmembers
note     : Table does not support optimize, doing recreate + analyze instead
status   : OK
roundcube.contactgroups
note     : Table does not support optimize, doing recreate + analyze instead
status   : OK
roundcube.contacts
note     : Table does not support optimize, doing recreate + analyze instead
status   : OK
roundcube.cp_schema_version                        Table is already up to date
roundcube.dictionary
note     : Table does not support optimize, doing recreate + analyze instead
status   : OK
roundcube.identities
note     : Table does not support optimize, doing recreate + analyze instead
status   : OK
roundcube.searches
note     : Table does not support optimize, doing recreate + analyze instead
status   : OK
roundcube.session
note     : Table does not support optimize, doing recreate + analyze instead
status   : OK
roundcube.system
note     : Table does not support optimize, doing recreate + analyze instead
status   : OK
roundcube.users
note     : Table does not support optimize, doing recreate + analyze instead
status   : OK
root@web [~]#

För att optimera hela databasen på servern använd:

root@web [~]# mysqlcheck -o -A

Resurser:
OPTIMERA TABELL manual
mysqlcheck manual


  1. Hur make_timestamp() fungerar i PostgreSQL

  2. FORALL-uttalande med nedre och övre gräns i Oracle-databasen

  3. Hur man gör SQLites LIKE-operatör skiftlägeskänslig

  4. hur man tar bort dubbletter av rader från en tabell i mysql