blob: 1e4ab2324906dbde572c8c951758c67fe1aa62af (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#
# show server variables
#
--disable_query_log
--echo ===== ENGINES =====
show engines;
--echo ===== VARIABLES =====
show variables;
--echo ===== STOP =====
--enable_query_log
exit;
|