Rechercher dans le manuel MySQL

13.7.6.35 SHOW STATUS Syntax

  1.     [LIKE 'pattern' | WHERE expr]

SHOW STATUS provides server status information (see Section 5.1.10, “Server Status Variables”). This statement does not require any privilege. It requires only the ability to connect to the server.

Status variable information is also available from these sources:

For SHOW STATUS, a LIKE clause, if present, indicates which variable names to match. A WHERE clause can be given to select rows using more general conditions, as discussed in Section 25.42, “Extensions to SHOW Statements”.

SHOW STATUS accepts an optional GLOBAL or SESSION variable scope modifier:

  • With a GLOBAL modifier, the statement displays the global status values. A global status variable may represent status for some aspect of the server itself (for example, Aborted_connects), or the aggregated status over all connections to MySQL (for example, Bytes_received and Bytes_sent). If a variable has no global value, the session value is displayed.

  • With a SESSION modifier, the statement displays the status variable values for the current connection. If a variable has no session value, the global value is displayed. LOCAL is a synonym for SESSION.

  • If no modifier is present, the default is SESSION.

The scope for each status variable is listed at Section 5.1.10, “Server Status Variables”.

Each invocation of the SHOW STATUS statement uses an internal temporary table and increments the global Created_tmp_tables value.

Partial output is shown here. The list of names and values may differ for your server. The meaning of each variable is given in Section 5.1.10, “Server Status Variables”.

  1. mysql> SHOW STATUS;
  2. +--------------------------+------------+
  3. | Variable_name            | Value      |
  4. +--------------------------+------------+
  5. | Aborted_clients          | 0          |
  6. | Aborted_connects         | 0          |
  7. | Bytes_received           | 155372598  |
  8. | Bytes_sent               | 1176560426 |
  9. | Connections              | 30023      |
  10. | Created_tmp_disk_tables  | 0          |
  11. | Created_tmp_tables       | 8340       |
  12. | Created_tmp_files        | 60         |
  13. ...
  14. | Open_tables              | 1          |
  15. | Open_files               | 2          |
  16. | Open_streams             | 0          |
  17. | Opened_tables            | 44600      |
  18. | Questions                | 2026873    |
  19. ...
  20. | Table_locks_immediate    | 1920382    |
  21. | Table_locks_waited       | 0          |
  22. | Threads_cached           | 0          |
  23. | Threads_created          | 30022      |
  24. | Threads_connected        | 1          |
  25. | Threads_running          | 1          |
  26. | Uptime                   | 80380      |
  27. +--------------------------+------------+

With a LIKE clause, the statement displays only rows for those variables with names that match the pattern:

  1. mysql> SHOW STATUS LIKE 'Key%';
  2. +--------------------+----------+
  3. | Variable_name      | Value    |
  4. +--------------------+----------+
  5. | Key_blocks_used    | 14955    |
  6. | Key_read_requests  | 96854827 |
  7. | Key_reads          | 162040   |
  8. | Key_write_requests | 7589728  |
  9. | Key_writes         | 3813196  |
  10. +--------------------+----------+

Zoek in de MySQL-handleiding

Nederlandse vertaling

U hebt gevraagd om deze site in het Nederlands te bezoeken. Voor nu wordt alleen de interface vertaald, maar nog niet alle inhoud.

Als je me wilt helpen met vertalingen, is je bijdrage welkom. Het enige dat u hoeft te doen, is u op de site registreren en mij een bericht sturen waarin u wordt gevraagd om u toe te voegen aan de groep vertalers, zodat u de gewenste pagina's kunt vertalen. Een link onderaan elke vertaalde pagina geeft aan dat u de vertaler bent en heeft een link naar uw profiel.

Bij voorbaat dank.

Document heeft de 26/06/2006 gemaakt, de laatste keer de 26/10/2018 gewijzigd
Bron van het afgedrukte document:https://www.gaudry.be/nl/mysql-rf-show-status.html

De infobrol is een persoonlijke site waarvan de inhoud uitsluitend mijn verantwoordelijkheid is. De tekst is beschikbaar onder CreativeCommons-licentie (BY-NC-SA). Meer info op de gebruiksvoorwaarden en de auteur.

Referenties

  1. Bekijk - html-document Taal van het document:en Manuel MySQL : https://dev.mysql.com/

Deze verwijzingen en links verwijzen naar documenten die geraadpleegd zijn tijdens het schrijven van deze pagina, of die aanvullende informatie kunnen geven, maar de auteurs van deze bronnen kunnen niet verantwoordelijk worden gehouden voor de inhoud van deze pagina.
De auteur Deze site is als enige verantwoordelijk voor de manier waarop de verschillende concepten, en de vrijheden die met de referentiewerken worden genomen, hier worden gepresenteerd. Vergeet niet dat u meerdere broninformatie moet doorgeven om het risico op fouten te verkleinen.

Inhoudsopgave Haut