Information Schema GLOBAL_STATUS and SESSION_STATUS Tables
The Information Schema GLOBAL_STATUS
and SESSION_STATUS
tables store a record of all status variables and their global and session values respectively. This is the same information as displayed by the SHOW STATUS commands SHOW GLOBAL STATUS
and SHOW SESSION STATUS
.
They contain the following columns:
Column
Description
Column
Description
VARIABLE_NAME
Status variable name.
VARIABLE_VALUE
Global or session value.
Example
SELECT * FROM information_schema.GLOBAL_STATUS;
+-----------------------------------------------+--------------------+
| VARIABLE_NAME | VARIABLE_VALUE |
+-----------------------------------------------+--------------------+
...
| BINLOG_SNAPSHOT_FILE | mariadb-bin.000208 |
| BINLOG_SNAPSHOT_POSITION | 369 |
...
| THREADS_CONNECTED | 1 |
| THREADS_CREATED | 1 |
| THREADS_RUNNING | 1 |
| UPTIME | 57358 |
| UPTIME_SINCE_FLUSH_STATUS | 57358 |
+-----------------------------------------------+--------------------+
This page is licensed: CC BY-SA / Gnu FDL
PreviousInformation Schema GEOMETRY_COLUMNS TableNextInformation Schema GLOBAL_VARIABLES and SESSION_VARIABLES Tables
Last updated
Was this helpful?