Skip to content
This repository has been archived by the owner on Oct 9, 2018. It is now read-only.

Latest commit

 

History

History
40 lines (29 loc) · 662 Bytes

Configuration.md

File metadata and controls

40 lines (29 loc) · 662 Bytes

Configuration

Options

mysqld --verbose --help

my.cnf

Variables

-- VARIABLES
SHOW GLOBAL VARIABLES ;
SHOW SESSION VARIABLES ;
-- STATUS
SHOW GLOBAL STATUS ;
SHOW SESSION STATUS ;

SQL Modes

  • characteristics
  • behavior
SELECT @@sql_mode;
+--------------------------------------------+
| @@sql_mode                                 |
+--------------------------------------------+
| STRICT_TRANS_TABLES,NO_ENGINE_SUBSTITUTION |
+--------------------------------------------+
1 row in set (0.00 sec)

Reference