I want to know the list of MySQL system variables. Is there any way please?
Answer No: 105
MySQL allows to show its system variables as well as session variables (user level variables). To get MySQL system level variables, you may run the following query in any MySQL client tool like Query Browser or phpMyAdmin etc:
SHOW GLOBAL VARIABLES;
To know user level variabels, run the following:
SHOW SESSION VARIABLES;
Comments
Submitted by BZETZWWYA on Thursday, 13th November 2008 at 14:23:50