SlideShare a Scribd company logo
1 of 103
Download to read offline
MySQL Idiosyncrasies
that BITE
MySQL Idiosyncrasies That BITE - 2010.10
Title
Ronald Bradford
http://ronaldbradford.com
OTN LAD Tour 2010
South America
2010.10
Ronald Bradford
http://ronaldbradford.com
@RonaldBradford #OTN #LAOUC
MySQL Idiosyncrasies That BITE - 2010.10
Definitions
idiosyncrasy
[id-ee-uh-sing-kruh-see, -sin-] –noun,plural-sies.
A characteristic, habit, mannerism, or the
like, that is peculiar to ...
http://dictionary.com
MySQL Idiosyncrasies That BITE - 2010.10
About RDBMS - Oracle != MySQL
Product Age
Development philosophies
Target audience
Developer practices
Installed versions
MySQL Idiosyncrasies That BITE - 2010.10
Expected RDBMS Characteristics
Data Integrity
Transactions
ACID
Data Security
ANSI SQL
MySQL Idiosyncrasies That BITE - 2010.10
These RDBMS characteristics
are NOT enabled by default
in MySQL
WARNING !!!
(*)
MySQL Idiosyncrasies That BITE - 2010.10
MySQL Terminology
Storage Engines
MyISAM - Default
InnoDB - Default from MySQL 5.5
Transactions
Non Transactional Engine(s)
Transactional Engine(s)
MySQL Idiosyncrasies That BITE - 2010.10
1. Data Integrity
MySQL Idiosyncrasies That BITE - 2010.10
Data Integrity - Expected
CREATE TABLE orders (
qty TINYINT UNSIGNED NOT NULL,
created TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET latin1;
INSERT INTO orders(qty) VALUES (0), (100), (255);
SELECT * FROM orders;
+-----+---------------------+
| qty | created |
+-----+---------------------+
| 0 | 2010-10-25 12:22:22 |
| 100 | 2010-10-25 12:22:22 |
| 255 | 2010-10-25 12:22:22 |
+-----+---------------------+
✔
MySQL Idiosyncrasies That BITE - 2010.10
Data Integrity - Unexpected
mysql> INSERT INTO orders (qty) VALUES (-1), (9000);
mysql> SELECT * FROM orders;
+-----+---------------------+
| qty | created |
+-----+---------------------+
| 0 | 2010-10-25 12:22:22 |
| 100 | 2010-10-25 12:22:22 |
| 255 | 2010-10-25 12:22:22 |
| 0 | 2010-10-25 12:23:06 |
| 255 | 2010-10-25 12:23:06 |
+-----+---------------------+
//CREATE TABLE orders (
// qty TINYINT UNSIGNED NOT NULL,
✘
MySQL Idiosyncrasies That BITE - 2010.10
Data Integrity - Unexpected
mysql> INSERT INTO orders (qty) VALUES (-1), (9000);
mysql> SELECT * FROM orders;
+-----+---------------------+
| qty | created |
+-----+---------------------+
| 0 | 2010-10-25 12:22:22 |
| 100 | 2010-10-25 12:22:22 |
| 255 | 2010-10-25 12:22:22 |
| 0 | 2010-10-25 12:23:06 |
| 255 | 2010-10-25 12:23:06 |
+-----+---------------------+
//CREATE TABLE orders (
// qty TINYINT UNSIGNED NOT NULL,
✘
TINYINT is 1 byte.
UNSIGNED supports
values 0-255
MySQL Idiosyncrasies That BITE - 2010.10
Data Integrity - Warnings
mysql> INSERT INTO orders (qty) VALUES (-1), (9000);
Query OK, 2 rows affected, 2 warnings (0.05 sec)
mysql> SHOW WARNINGS;
+---------+------+----------------------------------------------+
| Level | Code | Message |
+---------+------+----------------------------------------------+
| Warning | 1264 | Out of range value for column 'qty' at row 1 |
| Warning | 1264 | Out of range value for column 'qty' at row 2 |
+---------+------+----------------------------------------------+
MySQL Idiosyncrasies That BITE - 2010.10
Data Integrity - Unexpected (2)
mysql> INSERT INTO customers (name)
-> VALUES ('RONALD BRADFORD'),
-> ('FRANCISCO MUNOZ ALVAREZ');
mysql> SELECT * FROM customers;
+----------------------+
| name |
+----------------------+
| RONALD BRADFORD |
| FRANCISCO MUNOZ ALVA |
+----------------------+
2 rows in set (0.00 sec)
✘
MySQL Idiosyncrasies That BITE - 2010.10
Data Integrity - Warnings (2)
INSERT INTO customers (name) VALUES ('RONALD BRADFORD'),
('FRANCISCO MUNOZ ALVAREZ');
Query OK, 2 rows affected, 1 warning (0.29 sec)
mysql> SHOW WARNINGS;
+---------+------+-------------------------------------------+
| Level | Code | Message |
+---------+------+-------------------------------------------+
| Warning | 1265 | Data truncated for column 'name' at row 2 |
+---------+------+-------------------------------------------+
MySQL Idiosyncrasies That BITE - 2010.10
Data Integrity with Dates - Warnings
mysql> INSERT INTO sample_date (d) VALUES ('2010-02-31');
Query OK, 1 row affected, 1 warning (0.00 sec)
mysql> SHOW WARNINGS;
+---------+------+----------------------------------------+
| Level | Code | Message |
+---------+------+----------------------------------------+
| Warning | 1265 | Data truncated for column 'd' at row 1 |
+---------+------+----------------------------------------+
mysql> SELECT * FROM sample_date;
+------------+
| d |
+------------+
| 0000-00-00 |
+------------+
✘
MySQL Idiosyncrasies That BITE - 2010.10
SHOW WARNINGS
http://dev.mysql.com/doc/refman/5.1/en/show-warnings.html
MySQL Idiosyncrasies That BITE - 2010.10
Using SQL_MODE for Data Integrity
SQL_MODE =
STRICT_ALL_TABLES;
http://dev.mysql.com/doc/refman/5.1/en/server-sql-mode.html
Recommended
Configuration
MySQL Idiosyncrasies That BITE - 2010.10
Data Integrity - Expected
mysql> SET SESSION SQL_MODE=STRICT_ALL_TABLES;
mysql> TRUNCATE TABLE sample_data;
mysql> INSERT INTO sample_data(i) VALUES (0), (100), (255);
mysql> INSERT INTO sample_data (i) VALUES (-1), (9000);
ERROR 1264 (22003): Out of range value for column 'i' at row 1
mysql> SELECT * FROM sample_data;
+-----+------+---------------------+
| i | c | t |
+-----+------+---------------------+
| 0 | NULL | 2010-06-06 14:39:48 |
| 100 | NULL | 2010-06-06 14:39:48 |
| 255 | NULL | 2010-06-06 14:39:48 |
+-----+------+---------------------+
3 rows in set (0.00 sec)
✔
MySQL Idiosyncrasies That BITE - 2010.10
Data Integrity with Dates - Expected
mysql> SET SESSION SQL_MODE=STRICT_ALL_TABLES;
mysql> INSERT INTO sample_date (d) VALUES ('2010-02-31');
ERROR 1292 (22007): Incorrect date value: '2010-02-31' for
column 'd' at row 1
✔
MySQL Idiosyncrasies That BITE - 2010.10
Data Integrity with Dates - Unexpected
mysql> INSERT INTO sample_date (d) VALUES ('2010-00-00');
mysql> INSERT INTO sample_date (d) VALUES ('2010-00-05');
mysql> INSERT INTO sample_date (d) VALUES ('0000-00-00');
mysql> SELECT * FROM sample_date;
+------------+
| d |
+------------+
| 2010-00-00 |
| 2010-00-05 |
| 0000-00-00 |
+------------+
✘
MySQL Idiosyncrasies That BITE - 2010.10
Using SQL_MODE for Date Integrity
SQL_MODE =
STRICT_ALL_TABLES,
NO_ZERO_DATE,
NO_ZERO_IN_DATE;
http://dev.mysql.com/doc/refman/5.1/en/server-sql-mode.html
Recommended
Configuration
MySQL Idiosyncrasies That BITE - 2010.10
Data Integrity with Dates - Expected
mysql> SET SESSION
SQL_MODE='STRICT_ALL_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE';
mysql> TRUNCATE TABLE sample_date;
mysql> INSERT INTO sample_date (d) VALUES ('2010-00-00');
ERROR 1292 (22007): Incorrect date value: '2010-00-00' for column
'd' at row 1
mysql> INSERT INTO sample_date (d) VALUES ('2010-00-05');
ERROR 1292 (22007): Incorrect date value: '2010-00-05' for column
'd' at row 1
mysql> INSERT INTO sample_date (d) VALUES ('0000-00-00');
ERROR 1292 (22007): Incorrect date value: '0000-00-00' for column
'd' at row 1
mysql> SELECT * FROM sample_date;
Empty set (0.00 sec)
✔
MySQL Idiosyncrasies That BITE - 2010.10
2.Transactions
MySQL Idiosyncrasies That BITE - 2010.10
Transactions Example - Tables
DROP TABLE IF EXISTS parent;
CREATE TABLE parent (
id INT UNSIGNED NOT NULL AUTO_INCREMENT,
val VARCHAR(10) NOT NULL,
PRIMARY KEY (id),
UNIQUE KEY (val)
) ENGINE=InnoDB DEFAULT CHARSET latin1;
DROP TABLE IF EXISTS child;
CREATE TABLE child (
id INT UNSIGNED NOT NULL AUTO_INCREMENT,
parent_id INT UNSIGNED NOT NULL,
created TIMESTAMP NOT NULL,
PRIMARY KEY (id),
INDEX (parent_id),
FOREIGN KEY (parent_id) REFERENCES parent(id)
) ENGINE=InnoDB DEFAULT CHARSET latin1;
MySQL Idiosyncrasies That BITE - 2010.10
Transactions Example - SQL
START TRANSACTION;
INSERT INTO parent(val) VALUES("a");
INSERT INTO child(parent_id,created)
VALUES(LAST_INSERT_ID(),NOW());
# Expecting an error with next SQL
INSERT INTO parent(val) VALUES("a");
ROLLBACK;
SELECT * FROM parent;
SELECT * FROM child;
MySQL Idiosyncrasies That BITE - 2010.10
Transactions Example - Expected
...
mysql> INSERT INTO parent (val) VALUES("a");
ERROR 1062 (23000): Duplicate entry 'a' for key 'val'
mysql> ROLLBACK;
mysql> SELECT * FROM parent;
Empty set (0.00 sec)
mysql> SELECT * FROM child;
Empty set (0.00 sec)
✔
MySQL Idiosyncrasies That BITE - 2010.10
Transactions Example - Tables
DROP TABLE IF EXISTS parent;
CREATE TABLE parent (
id INT UNSIGNED NOT NULL AUTO_INCREMENT,
val VARCHAR(10) NOT NULL,
PRIMARY KEY (id),
UNIQUE KEY (val)
) ENGINE=MyISAM DEFAULT CHARSET latin1;
DROP TABLE IF EXISTS child;
CREATE TABLE child (
id INT UNSIGNED NOT NULL AUTO_INCREMENT,
parent_id INT UNSIGNED NOT NULL,
created TIMESTAMP NOT NULL,
PRIMARY KEY (id),
INDEX (parent_id)
) ENGINE=MyISAM DEFAULT CHARSET latin1;
MyISAM is the current
default if not specified
MySQL Idiosyncrasies That BITE - 2010.10
Transactions Example - Unexpected
mysql> INSERT INTO parent (val) VALUES("a");
ERROR 1062 (23000): Duplicate entry 'a' for key 'val'
mysql> ROLLBACK;
mysql> SELECT * FROM parent;
+----+-----+
| id | val |
+----+-----+
| 1 | a |
+----+-----+
1 row in set (0.00 sec)
mysql> SELECT * FROM child;
+----+-----------+---------------------+
| id | parent_id | created |
+----+-----------+---------------------+
| 1 | 1 | 2010-06-03 13:53:38 |
+----+-----------+---------------------+
1 row in set (0.00 sec)
✘
MySQL Idiosyncrasies That BITE - 2010.10
Transactions Example - Unexpected (2)
mysql> ROLLBACK;
Query OK, 0 rows affected, 1 warning (0.00 sec)
mysql> SHOW WARNINGS;
+---------+-------+-------------------------------------
| Level | Code | Message
|
+---------+------+--------------------------------------
| Warning | 1196 | Some non-transactional changed tables
couldn't be rolled back |
+---------+------+--------------------------------------
✘
MySQL Idiosyncrasies That BITE - 2010.10
Transactions Solution
mysql> SET GLOBAL storage_engine=InnoDB;
# my.cnf
[mysqld]
default-storage-engine=InnoDB
# NOTE: Requires server restart
$ /etc/init.d/mysqld stop
$ /etc/init.d/mysqld start
http://dev.mysql.com/doc/refman/5.1/en/server-options.html#option_mysqld_default-storage-engine
Recommended
Configuration
MySQL Idiosyncrasies That BITE - 2010.10
Why use Non Transactional Tables?
No transaction overhead
Much faster
Less disk writes
Lower disk space requirements
Less memory requirements
http://dev.mysql.com/doc/refman/5.1/en/storage-engine-compare-transactions.html
MySQL Idiosyncrasies That BITE - 2010.10
3.Variable Scope
MySQL Idiosyncrasies That BITE - 2010.10
Variable Scope Example
mysql> CREATE TABLE test1(id INT UNSIGNED NOT NULL);
mysql> SHOW CREATE TABLE test1G
CREATE TABLE `test1` (
`id` int(10) unsigned NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
MyISAM is the current
default if not specified
MySQL Idiosyncrasies That BITE - 2010.10
Variable Scope Example (2)
mysql> SHOW GLOBAL VARIABLES LIKE 'storage_engine';
+----------------+--------+
| Variable_name | Value |
+----------------+--------+
| storage_engine | MyISAM |
+----------------+--------+
mysql> SET GLOBAL storage_engine='InnoDB';
mysql> SHOW GLOBAL VARIABLES LIKE 'storage_engine';
+----------------+--------+
| Variable_name | Value |
+----------------+--------+
| storage_engine | InnoDB |
+----------------+--------+
Changing in
MySQL 5.5
MySQL Idiosyncrasies That BITE - 2010.10
Variable Scope Example (3)
mysql> SHOW GLOBAL VARIABLES LIKE 'storage_engine';
+----------------+--------+
| Variable_name | Value |
+----------------+--------+
| storage_engine | InnoDB |
+----------------+--------+
mysql> DROP TABLE test1;
mysql> CREATE TABLE test1(id INT UNSIGNED NOT NULL);
mysql> SHOW CREATE TABLE test1G
CREATE TABLE `test1` (
`id` int(10) unsigned NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
✘
MySQL Idiosyncrasies That BITE - 2010.10
Variable Scope Example (4)
mysql> SHOW GLOBAL VARIABLES LIKE 'storage_engine';
+----------------+--------+
| Variable_name | Value |
+----------------+--------+
| storage_engine | InnoDB |
+----------------+--------+
MySQL Idiosyncrasies That BITE - 2010.10
Variable Scope Example (4)
mysql> SHOW GLOBAL VARIABLES LIKE 'storage_engine';
+----------------+--------+
| Variable_name | Value |
+----------------+--------+
| storage_engine | InnoDB |
+----------------+--------+
mysql> SHOW SESSION VARIABLES LIKE 'storage_engine';
+----------------+--------+
| Variable_name | Value |
+----------------+--------+
| storage_engine | MyISAM |
+----------------+--------+
MySQL Idiosyncrasies That BITE - 2010.10
Variable Scope Example (4)
mysql> SHOW GLOBAL VARIABLES LIKE 'storage_engine';
+----------------+--------+
| Variable_name | Value |
+----------------+--------+
| storage_engine | InnoDB |
+----------------+--------+
mysql> SHOW SESSION VARIABLES LIKE 'storage_engine';
+----------------+--------+
| Variable_name | Value |
+----------------+--------+
| storage_engine | MyISAM |
+----------------+--------+
MySQLVariables have
two scopes.
SESSION & GLOBAL
MySQL Idiosyncrasies That BITE - 2010.10
Variable Scope Syntax
SHOW [GLOBAL | SESSION]VARIABLES;
SET [GLOBAL | SESSION] variable = value;
Default is GLOBAL since 5.0.2
http://dev.mysql.com/doc/refman/5.1/en/user-variables.html
http://dev.mysql.com/doc/refman/5.1/en/set-option.html
MySQL Idiosyncrasies That BITE - 2010.10
Variable Scope Precautions
Persistent connections (e.g. Java)
Replication SQL_THREAD
Be careful of existing
connections!
MySQL Idiosyncrasies That BITE - 2010.10
4. Storage Engines
MySQL Idiosyncrasies That BITE - 2010.10
Storage Engines Example - Creation
CREATE TABLE test1 (
id INT UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET latin1;
SHOW CREATE TABLE test1G
*************************** 1. row *************
Table: test1
Create Table: CREATE TABLE `test1` (
`id` int(10) unsigned NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
✘
MySQL Idiosyncrasies That BITE - 2010.10
Storage Engines Example - Creation
CREATE TABLE test1 (
id INT UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET latin1;
SHOW CREATE TABLE test1G
*************************** 1. row *************
Table: test1
Create Table: CREATE TABLE `test1` (
`id` int(10) unsigned NOT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
✘
Even specified the
storage engine reverted
to the default
MySQL Idiosyncrasies That BITE - 2010.10
Storage Engines Example - Unexpected
CREATE TABLE test1 (
id INT UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET latin1;
Query OK, 0 rows affected, 2 warnings (0.13 sec)
SHOW WARNINGS;
+---------+------+-----------------------------------------------+
| Level | Code | Message |
+---------+------+-----------------------------------------------+
| Warning | 1286 | Unknown table engine 'InnoDB' |
| Warning | 1266 | Using storage engine MyISAM for table 'test1' |
+---------+------+-----------------------------------------------+
2 rows in set (0.00 sec)
MySQL Idiosyncrasies That BITE - 2010.10
Storage Engines Example - Cause
mysql> SHOW ENGINES;
+------------+---------+-------------------------+--------------+
| Engine | Support | Comment | Transactions |
+------------+---------+-------------------------+--------------+
| InnoDB | NO | Supports transaction... | NULL |
| MEMORY | YES | Hash based, stored i... | NO |
| MyISAM | DEFAULT | Default engine as ... | NO |
MySQL Idiosyncrasies That BITE - 2010.10
Storage Engines Example - Unexpected (2)
mysql> CREATE TABLE test1
id INT UNSIGNED NOT NULL
) ENGINE=InnDB DEFAULT CHARSET latin1;
Query OK, 0 rows affected, 2 warnings (0.11 sec)
mysql> SHOW WARNINGS;
+---------+------+-----------------------------------------------+
| Level | Code | Message |
+---------+------+-----------------------------------------------+
| Warning | 1286 | Unknown table engine 'InnDB' |
| Warning | 1266 | Using storage engine MyISAM for table 'test1' |
+---------+------+-----------------------------------------------+
✘
Be careful of spelling
mistakes as well.
MySQL Idiosyncrasies That BITE - 2010.10
Using SQL_MODE for Storage Engines
SQL_MODE =
STRICT_ALL_TABLES,
NO_ZERO_DATE,
NO_ZERO_IN_DATE,
NO_ENGINE_SUBSTITUTION;
http://dev.mysql.com/doc/refman/5.1/en/server-sql-mode.html
Recommended
Configuration
MySQL Idiosyncrasies That BITE - 2010.10
Storage Engines Example - Solution
SET SESSION SQL_MODE=NO_ENGINE_SUBSTITUTION;
DROP TABLE IF EXISTS test3;
CREATE TABLE test3 (
id INT UNSIGNED NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET latin1;
ERROR 1286 (42000): Unknown table engine 'InnoDB'
✔
MySQL Idiosyncrasies That BITE - 2010.10
5.ACID
MySQL Idiosyncrasies That BITE - 2010.10
Atomicity -
All or nothing
MySQL Idiosyncrasies That BITE - 2010.10
Atomicity - Table
DROP TABLE IF EXISTS accounts;
CREATE TABLE accounts(
id INT UNSIGNED NOT NULL AUTO_INCREMENT,
username VARCHAR(10) NOT NULL,
PRIMARY KEY (id),
UNIQUE KEY (username)
) ENGINE=MyISAM DEFAULT CHARSET latin1;
MySQL Idiosyncrasies That BITE - 2010.10
Atomicity - Data
INSERT INTO accounts (username)
VALUES('jane'),('jo'),('joe'),('joel'),('jame'),
('jamel');
mysql> SELECT * FROM accounts;
+----+----------+
| id | username |
+----+----------+
| 1 | jane |
| 2 | jo |
| 3 | joe |
| 4 | joel |
| 5 | jame |
| 6 | jamel |
+----+----------+
6 rows in set (0.00 sec)
MySQL Idiosyncrasies That BITE - 2010.10
Atomicity - Unexpected
mysql> UPDATE accounts SET username=CONCAT(username,'l')
ERROR 1062 (23000): Duplicate entry 'joel' for key
'username'
mysql> SELECT * FROM accounts;
+----+----------+
| id | username |
+----+----------+
| 1 | janel |
| 2 | jol |
| 3 | joe |
| 4 | joel |
| 5 | jame |
| 6 | jamel |
+----+----------+
6 rows in set (0.01 sec)
✘
MySQL Idiosyncrasies That BITE - 2010.10
Atomicity - Unexpected (2)
mysql> ROLLBACK;
Query OK, 0 rows affected (0.00 sec)
mysql> SELECT * FROM accounts;
+----+----------+
| id | username |
+----+----------+
| 1 | janel |
| 2 | jol |
| 3 | joe |
| 4 | joel |
...
✘
MySQL Idiosyncrasies That BITE - 2010.10
Atomicity - Unexpected (2)
mysql> ROLLBACK;
Query OK, 0 rows affected (0.00 sec)
mysql> SELECT * FROM accounts;
+----+----------+
| id | username |
+----+----------+
| 1 | janel |
| 2 | jol |
| 3 | joe |
| 4 | joel |
...
✘
Rollback has no effect
on non transactional
tables
MySQL Idiosyncrasies That BITE - 2010.10
Atomicity - Transactional Table
CREATE TABLE accounts(
id INT UNSIGNED NOT NULL AUTO_INCREMENT,
username VARCHAR(10) NOT NULL,
PRIMARY KEY (id),
UNIQUE KEY (username)
) ENGINE=InnoDB DEFAULT CHARSET latin1;
INSERT INTO accounts (username) VALUES('jane'),('jo')...
UPDATE accounts SET username=CONCAT(username,'l');
ERROR 1062 (23000): Duplicate entry 'joel' for key 'username'
SELECT * FROM accounts;
+----+----------+
| id | username |
+----+----------+
| 5 | jame |
| 6 | jamel |
| 1 | jane |
| 2 | jo |
| 3 | joe |
| 4 | joel |
✔
MySQL Idiosyncrasies That BITE - 2010.10
Atomicity - Transactional Table
CREATE TABLE accounts(
id INT UNSIGNED NOT NULL AUTO_INCREMENT,
username VARCHAR(10) NOT NULL,
PRIMARY KEY (id),
UNIQUE KEY (username)
) ENGINE=InnoDB DEFAULT CHARSET latin1;
INSERT INTO accounts (username) VALUES('jane'),('jo')...
UPDATE accounts SET username=CONCAT(username,'l');
ERROR 1062 (23000): Duplicate entry 'joel' for key 'username'
SELECT * FROM accounts;
+----+----------+
| id | username |
+----+----------+
| 5 | jame |
| 6 | jamel |
| 1 | jane |
| 2 | jo |
| 3 | joe |
| 4 | joel |
✔
Data remains unchanged
MySQL Idiosyncrasies That BITE - 2010.10
Atomicity - Transactional Table
mysql> ROLLBACK;
Query OK, 0 rows affected (0.00 sec)
mysql> SELECT * FROM accounts;
+----+----------+
| id | username |
+----+----------+
| 5 | jame |
| 6 | jamel |
| 1 | jane |
| 2 | jo |
| 3 | joe |
| 4 | joel |
+----+----------+
✘
MySQL Idiosyncrasies That BITE - 2010.10
Atomicity - Transactional Table
mysql> ROLLBACK;
Query OK, 0 rows affected (0.00 sec)
mysql> SELECT * FROM accounts;
+----+----------+
| id | username |
+----+----------+
| 5 | jame |
| 6 | jamel |
| 1 | jane |
| 2 | jo |
| 3 | joe |
| 4 | joel |
+----+----------+
✘
Data remains, INSERT
was not rolled back?
MySQL Idiosyncrasies That BITE - 2010.10
Atomicity - The culprit
mysql> SHOW GLOBAL VARIABLES LIKE 'autocommit';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| autocommit | ON |
+---------------+-------+
MySQL Idiosyncrasies That BITE - 2010.10
Atomicity - The culprit
mysql> SHOW GLOBAL VARIABLES LIKE 'autocommit';
+---------------+-------+
| Variable_name | Value |
+---------------+-------+
| autocommit | ON |
+---------------+-------+
The default for
autocommit is ON.
Great care is needed to
change the default.
MySQL Idiosyncrasies That BITE - 2010.10
Atomicity - Recommendations
Always wrap SQL in transactions
START TRANSACTION | BEGIN [WORK]
COMMIT
Recommended
Practice
MySQL Idiosyncrasies That BITE - 2010.10
Isolation -
Transactions do not affect
other transactions
MySQL Idiosyncrasies That BITE - 2010.10
Transaction Isolation - Levels
READ-UNCOMMITTED
READ-COMMITTED
REPEATABLE-READ
SERIALIZABLE
http://dev.mysql.com/doc/refman/5.1/en/set-transaction.html
http://ronaldbradford.com/blog/understanding-mysql-innodb-transaction-isolation-2009-09-24/
MySQL supports 4
isolation levels
MySQL Idiosyncrasies That BITE - 2010.10
Transaction Isolation - Default
The default is
REPEATABLE-READ
SET GLOBAL tx_isolation = 'READ-COMMITTED';
This is a mistake
http://ronaldbradford.com/blog/dont-assume-common-terminology-2010-03-03/
MySQL Idiosyncrasies That BITE - 2010.10
Transaction Isolation - Default
The default is
REPEATABLE-READ
SET GLOBAL tx_isolation = 'READ-COMMITTED';
This is a mistake
http://ronaldbradford.com/blog/dont-assume-common-terminology-2010-03-03/
Common mistake by
Oracle DBA's
supporting MySQL
MySQL Idiosyncrasies That BITE - 2010.10
Oracle READ COMMITTED
!=
MySQL READ-COMMITTED
MySQL Idiosyncrasies That BITE - 2010.10
Transaction Isolation - Binary Logging Errors
SET GLOBAL tx_isolation='READ-COMMITTED';
Query OK, 0 rows affected (0.00 sec)
mysql> insert into test1 values (1,'x');
ERROR 1598 (HY000): Binary logging not possible.
Message: Transaction level 'READ-COMMITTED' in InnoDB is
not safe for binlog mode 'STATEMENT'
✘
As of 5.1 this requires
further configuration
considerations
MySQL Idiosyncrasies That BITE - 2010.10
Durability -
No committed
transactions are lost
MySQL Idiosyncrasies That BITE - 2010.10
Data Safety
MyISAM writes/flushes data every statement
Does not flush indexes (*)
InnoDB can relax durability
flush all transactions per second
innodb_flush_log_at_trx_commit
sync_binlog
innodb_support_xa
MySQL Idiosyncrasies That BITE - 2010.10
Auto Recovery
InnoDB has it
MyISAM does not - (*) Indexes
MYISAM-RECOVER=FORCE,BACKUP
REPAIR TABLE
myisamchk
MySQL Idiosyncrasies That BITE - 2010.10
Recovery Time
InnoDB is consistent
Redo Log file size
Slow performance in Undo (*)
MyISAM grows with data volume
MySQL Idiosyncrasies That BITE - 2010.10
InnoDB Auto Recovery Example
InnoDB: Log scan progressed past the checkpoint lsn 0 188755039
100624 16:37:44 InnoDB: Database was not shut down normally!
InnoDB: Starting crash recovery.
InnoDB: Reading tablespace information from the .ibd files...
InnoDB: Restoring possible half-written data pages from the doublewrite
InnoDB: buffer...
InnoDB: Doing recovery: scanned up to log sequence number 0 193997824
InnoDB: Doing recovery: scanned up to log sequence number 0 195151897
InnoDB: 1 transaction(s) which must be rolled back or cleaned up
InnoDB: in total 105565 row operations to undo
InnoDB: Trx id counter is 0 18688
100624 16:37:45 InnoDB: Starting an apply batch of log records to the
database...
InnoDB: Progress in percents: 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
19 ... 99
InnoDB: Apply batch completed
InnoDB: Last MySQL binlog file position 0 12051, file name ./binary-log.
000003
InnoDB: Starting in background the rollback of uncommitted transactions
...
✔
MySQL Idiosyncrasies That BITE - 2010.10
MyISAM Repair needed Example
100126 22:44:35 [ERROR] /var/lib/mysql5/bin/mysqld: Table './XXX/
descriptions' is marked as crashed and should be repaired
100126 22:44:35 [Warning] Checking table: './XXX/descriptions'
100126 22:44:35 [ERROR] /var/lib/mysql5/bin/mysqld: Table './XXX/taggings'
is marked as crashed and should be repaired
100126 22:44:35 [Warning] Checking table: './XXX/taggings'
100126 22:44:35 [ERROR] /var/lib/mysql5/bin/mysqld: Table './XXX/vehicle'
is marked as crashed and should be repaired
✘
MySQL Idiosyncrasies That BITE - 2010.10
6. Data Security
MySQL Idiosyncrasies That BITE - 2010.10
User Privileges - Practices
CREATE USER goodguy@localhost IDENTIFIED BY 'sakila';
GRANT CREATE,SELECT,INSERT,UPDATE,DELETE ON odtug.* TO
goodguy@localhost;
CREATE USER superman@'%';
GRANT ALL ON *.* TO superman@'%';
Best Practice
Normal Practice
http://dev.mysql.com/doc/refman/5.1/en/create-user.html
http://dev.mysql.com/doc/refman/5.1/en/grant.html
✔
✘
MySQL Idiosyncrasies That BITE - 2010.10
User Privileges - Normal Bad Practice
GRANT ALL ON *.* TO user@’%’
*.* gives you access to all tables in all schemas
@’%’ give you access from any external location
ALL gives you
ALTER,ALTER ROUTINE, CREATE, CREATE ROUTINE, CREATE TEMPORARY
TABLES, CREATE USER, CREATEVIEW, DELETE, DROP, EVENT, EXECUTE, FILE,
INDEX, INSERT, LOCK TABLES, PROCESS, REFERENCES, RELOAD, REPLICATION
CLIENT, REPLICATION SLAVE, SELECT, SHOW DATABASES, SHOWVIEW,
SHUTDOWN, SUPER,TRIGGER, UPDATE, USAGE
MySQL Idiosyncrasies That BITE - 2010.10
User Privileges - Why SUPER is bad
SUPER
Bypasses read_only
Bypasses init_connect
Can Disable binary logging
Change configuration dynamically
No reserved connection
MySQL Idiosyncrasies That BITE - 2010.10
SUPER and Read Only
$ mysql -ugoodguy -psakila odtug
mysql> insert into test1(id) values(1);
ERROR 1290 (HY000): The MySQL server is running with the
--read-only option so it cannot execute this statement ✔
$ mysql -usuperman odtug
mysql> insert into test1(id) values(1);
Query OK, 1 row affected (0.01 sec)
✘
MySQL Idiosyncrasies That BITE - 2010.10
SUPER and Read Only
$ mysql -ugoodguy -psakila odtug
mysql> insert into test1(id) values(1);
ERROR 1290 (HY000): The MySQL server is running with the
--read-only option so it cannot execute this statement ✔
$ mysql -usuperman odtug
mysql> insert into test1(id) values(1);
Query OK, 1 row affected (0.01 sec)
✘
Data inconsistency
now exists
MySQL Idiosyncrasies That BITE - 2010.10
SUPER and Init Connect
#my.cnf
[client]
init_connect=SET NAMES utf8
This specifies to use UTF8 for communication with client
and data
Common configuration
practice to support
UTF8
MySQL Idiosyncrasies That BITE - 2010.10
SUPER and Init Connect (2)
MySQL Idiosyncrasies That BITE - 2010.10
SUPER and Init Connect (2)
$ mysql -ugoodguy -psakila odtug
mysql> SHOW SESSION VARIABLES LIKE 'ch%';
+--------------------------+----------+
| Variable_name | Value |
+--------------------------+----------+
| character_set_client | utf8 |
| character_set_connection | utf8 |
| character_set_database | latin1 |
| character_set_filesystem | binary |
| character_set_results | utf8 |
| character_set_server | latin1 |
| character_set_system | utf8 |
+--------------------------+----------+
✔
MySQL Idiosyncrasies That BITE - 2010.10
SUPER and Init Connect (2)
$ mysql -usuperman odtug
mysql> SHOW SESSION VARIABLES LIKE
'character%';
+--------------------------+----------+
| Variable_name | Value |
+--------------------------+----------+
| character_set_client | latin1 |
| character_set_connection | latin1 |
| character_set_database | latin1 |
| character_set_filesystem | binary |
| character_set_results | latin1 |
| character_set_server | latin1 |
| character_set_system | utf8 |
+--------------------------+----------+
$ mysql -ugoodguy -psakila odtug
mysql> SHOW SESSION VARIABLES LIKE 'ch%';
+--------------------------+----------+
| Variable_name | Value |
+--------------------------+----------+
| character_set_client | utf8 |
| character_set_connection | utf8 |
| character_set_database | latin1 |
| character_set_filesystem | binary |
| character_set_results | utf8 |
| character_set_server | latin1 |
| character_set_system | utf8 |
+--------------------------+----------+
✔ ✘
MySQL Idiosyncrasies That BITE - 2010.10
SUPER and Init Connect (2)
$ mysql -usuperman odtug
mysql> SHOW SESSION VARIABLES LIKE
'character%';
+--------------------------+----------+
| Variable_name | Value |
+--------------------------+----------+
| character_set_client | latin1 |
| character_set_connection | latin1 |
| character_set_database | latin1 |
| character_set_filesystem | binary |
| character_set_results | latin1 |
| character_set_server | latin1 |
| character_set_system | utf8 |
+--------------------------+----------+
$ mysql -ugoodguy -psakila odtug
mysql> SHOW SESSION VARIABLES LIKE 'ch%';
+--------------------------+----------+
| Variable_name | Value |
+--------------------------+----------+
| character_set_client | utf8 |
| character_set_connection | utf8 |
| character_set_database | latin1 |
| character_set_filesystem | binary |
| character_set_results | utf8 |
| character_set_server | latin1 |
| character_set_system | utf8 |
+--------------------------+----------+
✔ ✘
Data integrity can be
compromised
MySQL Idiosyncrasies That BITE - 2010.10
SUPER and Binary Log
mysql> SHOW MASTER STATUS;
+-------------------+----------+--------------+------------------+
| binary-log.000017 | 4488 | | |
+-------------------+----------+--------------+------------------+
mysql> DELETE FROM sales WHERE id=23;
mysql> SET SQL_LOG_BIN=0;
mysql> DELETE FROM sales WHERE id=80;
mysql> SET SQL_LOG_BIN=1;
mysql> DELETE FROM sales WHERE id=99;
mysql> SHOW MASTER STATUS;
+-------------------+----------+--------------+------------------+
| File | Position | Binlog_Do_DB | Binlog_Ignore_DB |
+-------------------+----------+--------------+------------------+
| binary-log.000017 | 4580 | | |
+-------------------+----------+--------------+------------------+
1 row in set (0.00 sec)
MySQL Idiosyncrasies That BITE - 2010.10
SUPER and Binary Log (2)
# at 4488
#101025 12:57:24 server id 1 end_log_pos 4580 Query
thread_id=1 exec_time=0 error_code=0
SET @@session.lc_time_names=0/*!*/;
SET @@session.collation_database=DEFAULT/*!*/;
DELETE FROM sales WHERE id=23
/*!*/;
# at 4580
#101025 13:01:26 server id 1 end_log_pos 4672 Query
thread_id=1 exec_time=0 error_code=0
SET TIMESTAMP=1288018886/*!*/;
DELETE FROM sales WHERE id=99
/*!*/;
DELIMITER ;
✘
Data auditability is now
compromised
MySQL Idiosyncrasies That BITE - 2010.10
SUPER and reserved connection
$ mysql -uroot
mysql> show global variables like 'max_connections';
+-----------------+-------+
| Variable_name | Value |
+-----------------+-------+
| max_connections | 3 |
+-----------------+-------+
1 row in set (0.07 sec)
mysql> show global status like 'threads_connected';
+-------------------+-------+
| Variable_name | Value |
+-------------------+-------+
| Threads_connected | 4 |
+-------------------+-------+
✔
When connected
correctly, 1 connection
is reserved for SUPER
MySQL Idiosyncrasies That BITE - 2010.10
SUPER and reserved connection - Unexpected
$ mysql -uroot
ERROR 1040 (HY000): Too many connections
mysql> SHOW PROCESSLIST;
+----+------+-----------+-------+---------+------+------------+---------------
| Id | User | Host | db | Command | Time | State | Info
+----+------+-----------+-------+---------+------+------------+---------------
| 13 | root | localhost | odtug | Query | 144 | User sleep | UPDATE test1 ...
| 14 | root | localhost | odtug | Query | 116 | Locked | select * from test1
| 15 | root | localhost | odtug | Query | 89 | Locked | select * from test1
✘
When application
users all use SUPER,
administrator can't
diagnose problem
MySQL Idiosyncrasies That BITE - 2010.10
7. ANSI SQL
MySQL Idiosyncrasies That BITE - 2010.10
Group By Example
SELECT country, COUNT(*) AS color_count
FROM flags
GROUP BY country;
+-----------+-------------+
| country | color_count |
+-----------+-------------+
| Australia | 3 |
| Canada | 2 |
| Japan | 2 |
| Sweden | 2 |
| USA | 3 |
+-----------+-------------+
SELECT country, COUNT(*)
FROM flags;
+-----------+----------+
| country | COUNT(*) |
+-----------+----------+
| Australia | 12 |
+-----------+----------+
✔
✘
MySQL Idiosyncrasies That BITE - 2010.10
Group By Example (2)
SET SESSION sql_mode=ONLY_FULL_GROUP_BY;
SELECT country, COUNT(*)
FROM flags;
ERROR 1140 (42000): Mixing of GROUP columns (MIN(),MAX(),COUNT(),...)
with no GROUP columns is illegal if there is no GROUP BY clause
http://ExpertPHPandMySQL.com Chapter 1 - Pg 31
✔
MySQL Idiosyncrasies That BITE - 2010.10
Using SQL_MODE for ANSI SQL
SQL_MODE =
STRICT_ALL_TABLES,
NO_ZERO_DATE,
NO_ZERO_IN_DATE,
NO_ENGINE_SUBSTITUTION,
ONLY_FULL_GROUP_BY;
Recommended
Configuration
MySQL Idiosyncrasies That BITE - 2010.10
8. Case Sensitivity
MySQL Idiosyncrasies That BITE - 2010.10
Case Sensitivity String Comparison
SELECT 'OTN' = UPPER('otn');
+----------------------+
| 'OTN' = UPPER('otn') |
+----------------------+
| 1 |
+----------------------+
SELECT 'OTN' = 'OTN' AS same, 'OTN' = 'Otn' as initcap, 'OTN' = 'otn' as
lowercase, 'OTN' = 'otn' COLLATE latin1_general_cs AS different;
+------+---------+-----------+-----------+
| same | initcap | lowercase | different |
+------+---------+-----------+-----------+
| 1 | 1 | 1 | 0 |
+------+---------+-----------+-----------+
SELECT name, address, email
FROM customer
WHERE name = UPPER('bradford')
✘This practice is
unnecessary as does not
utilize index if exists
MySQL Idiosyncrasies That BITE - 2010.10
Case Sensitivity Tables
# Server 1
mysql> CREATE TABLE test1(id INT UNSIGNED NOT NULL);
mysql> INSERT INTO test1 VALUES(1);
mysql> INSERT INTO TEST1 VALUES(2);
# Server 2
mysql> CREATE TABLE test1(id INT UNSIGNED NOT NULL);
mysql> INSERT INTO test1 VALUES(1);
mysql> INSERT INTO TEST1 VALUES(2);
ERROR 1146 (42S02): Table 'test.TEST1' doesn't exist
MySQL Idiosyncrasies That BITE - 2010.10
Case Sensitivity Tables (2) - Operating Specific Settings
# Server 1 - Mac OS X / Windows Default
mysql> SHOW GLOBAL VARIABLES LIKE 'lower%';
+------------------------+-------+
| Variable_name | Value |
+------------------------+-------+
| lower_case_file_system | ON |
| lower_case_table_names | 2 |
+------------------------+-------+
# Server 2 - Linux Default
mysql> SHOW GLOBAL VARIABLES LIKE 'lower%';
+------------------------+-------+
| Variable_name | Value |
+------------------------+-------+
| lower_case_file_system | OFF |
| lower_case_table_names | 0 |
+------------------------+-------+
Be careful.This default
varies depending on
Operating System
MySQL Idiosyncrasies That BITE - 2010.10
Other Gotchas
MySQL Idiosyncrasies That BITE - 2010.10
Other features the BITE
Character Sets
Data/Client/Application/Web
Sub Queries
Rewrite as JOIN when possible
Views
No always efficient
Cascading Configuration Files
SQL_MODE's not to use
MySQL Idiosyncrasies That BITE - 2010.10
Conclusion
MySQL Idiosyncrasies That BITE - 2010.10
DON'T
ASSUME
MySQL Idiosyncrasies That BITE - 2010.10
Conclusion - SQL_MODE
SQL_MODE =
ALLOW_INVALID_DATES,ANSI_QUOTES, ERROR_FOR_DIVISION_ZERO,
HIGH_NOT_PRECEDENCE,IGNORE_SPACE,NO_AUTO_CREATE_USER,
NO_AUTO_VALUE_ON_ZERO,NO_BACKSLASH_ESCAPES,
NO_DIR_IN_CREATE,NO_ENGINE_SUBSTITUTION,
NO_FIELD_OPTIONS,NO_KEY_OPTIONS,NO_TABLE_OPTIONS,
NO_UNSIGNED_SUBTRACTION,NO_ZERO_DATE,
NO_ZERO_IN_DATE,ONLY_FULL_GROUP_BY (5.1.11),
PAD_CHAR_TO_FULL_LENGTH (5.1.20), PIPES_AS_CONCAT,
REAL_AS_FLOAT,STRICT_ALL_TABLES, STRICT_TRANS_TABLES
ANSI, DB2, MAXDB, MSSQL, MYSQL323, MYSQL40, ORACLE,
POSTGRESQL,TRADITIONAL
http://dev.mysql.com/doc/refman/5.1/en/server-sql-mode.html
✔
MySQL Idiosyncrasies That BITE - 2010.10
Conclusion - SQL_MODE
SQL_MODE =
ALLOW_INVALID_DATES,ANSI_QUOTES, ERROR_FOR_DIVISION_ZERO,
HIGH_NOT_PRECEDENCE,IGNORE_SPACE,NO_AUTO_CREATE_USER,
NO_AUTO_VALUE_ON_ZERO,NO_BACKSLASH_ESCAPES,
NO_DIR_IN_CREATE,NO_ENGINE_SUBSTITUTION,
NO_FIELD_OPTIONS,NO_KEY_OPTIONS,NO_TABLE_OPTIONS,
NO_UNSIGNED_SUBTRACTION,NO_ZERO_DATE,
NO_ZERO_IN_DATE,ONLY_FULL_GROUP_BY (5.1.11),
PAD_CHAR_TO_FULL_LENGTH (5.1.20), PIPES_AS_CONCAT,
REAL_AS_FLOAT,STRICT_ALL_TABLES, STRICT_TRANS_TABLES
ANSI, DB2, MAXDB, MSSQL, MYSQL323, MYSQL40, ORACLE,
POSTGRESQL,TRADITIONAL
http://dev.mysql.com/doc/refman/5.1/en/server-sql-mode.html
✔
✘
?
MySQL Idiosyncrasies That BITE - 2010.10
RonaldBradford.com
MySQL4OracleDBA.com

More Related Content

What's hot

15 protips for mysql users pfz
15 protips for mysql users   pfz15 protips for mysql users   pfz
15 protips for mysql users pfzJoshua Thijssen
 
Lecture2 mysql by okello erick
Lecture2 mysql by okello erickLecture2 mysql by okello erick
Lecture2 mysql by okello erickokelloerick
 
My sql statements by okello erick
My sql statements by okello erickMy sql statements by okello erick
My sql statements by okello erickokelloerick
 
Using Optimizer Hints to Improve MySQL Query Performance
Using Optimizer Hints to Improve MySQL Query PerformanceUsing Optimizer Hints to Improve MySQL Query Performance
Using Optimizer Hints to Improve MySQL Query Performanceoysteing
 
MySQL Idiosyncrasies That Bite
MySQL Idiosyncrasies That BiteMySQL Idiosyncrasies That Bite
MySQL Idiosyncrasies That BiteRonald Bradford
 
Lecture3 mysql gui by okello erick
Lecture3 mysql gui by okello erickLecture3 mysql gui by okello erick
Lecture3 mysql gui by okello erickokelloerick
 
MySQL Idiosyncrasies That Bite 2010.07
MySQL Idiosyncrasies That Bite 2010.07MySQL Idiosyncrasies That Bite 2010.07
MySQL Idiosyncrasies That Bite 2010.07Ronald Bradford
 
MySQL Kitchen : spice up your everyday SQL queries
MySQL Kitchen : spice up your everyday SQL queriesMySQL Kitchen : spice up your everyday SQL queries
MySQL Kitchen : spice up your everyday SQL queriesDamien Seguy
 
Efficient Pagination Using MySQL
Efficient Pagination Using MySQLEfficient Pagination Using MySQL
Efficient Pagination Using MySQLEvan Weaver
 
MySQL's JSON Data Type and Document Store
MySQL's JSON Data Type and Document StoreMySQL's JSON Data Type and Document Store
MySQL's JSON Data Type and Document StoreDave Stokes
 
The MySQL Query Optimizer Explained Through Optimizer Trace
The MySQL Query Optimizer Explained Through Optimizer TraceThe MySQL Query Optimizer Explained Through Optimizer Trace
The MySQL Query Optimizer Explained Through Optimizer Traceoysteing
 
Cat database
Cat databaseCat database
Cat databasetubbeles
 
Lecture5 my sql statements by okello erick
Lecture5 my sql statements by okello erickLecture5 my sql statements by okello erick
Lecture5 my sql statements by okello erickokelloerick
 

What's hot (18)

15 protips for mysql users pfz
15 protips for mysql users   pfz15 protips for mysql users   pfz
15 protips for mysql users pfz
 
Lecture2 mysql by okello erick
Lecture2 mysql by okello erickLecture2 mysql by okello erick
Lecture2 mysql by okello erick
 
My sql statements by okello erick
My sql statements by okello erickMy sql statements by okello erick
My sql statements by okello erick
 
Using Optimizer Hints to Improve MySQL Query Performance
Using Optimizer Hints to Improve MySQL Query PerformanceUsing Optimizer Hints to Improve MySQL Query Performance
Using Optimizer Hints to Improve MySQL Query Performance
 
MySQL Idiosyncrasies That Bite
MySQL Idiosyncrasies That BiteMySQL Idiosyncrasies That Bite
MySQL Idiosyncrasies That Bite
 
Intro to my sql
Intro to my sqlIntro to my sql
Intro to my sql
 
Lecture3 mysql gui by okello erick
Lecture3 mysql gui by okello erickLecture3 mysql gui by okello erick
Lecture3 mysql gui by okello erick
 
介绍 MySQL
介绍 MySQL介绍 MySQL
介绍 MySQL
 
MySQL Idiosyncrasies That Bite 2010.07
MySQL Idiosyncrasies That Bite 2010.07MySQL Idiosyncrasies That Bite 2010.07
MySQL Idiosyncrasies That Bite 2010.07
 
MySQL Kitchen : spice up your everyday SQL queries
MySQL Kitchen : spice up your everyday SQL queriesMySQL Kitchen : spice up your everyday SQL queries
MySQL Kitchen : spice up your everyday SQL queries
 
Efficient Pagination Using MySQL
Efficient Pagination Using MySQLEfficient Pagination Using MySQL
Efficient Pagination Using MySQL
 
MySQL's JSON Data Type and Document Store
MySQL's JSON Data Type and Document StoreMySQL's JSON Data Type and Document Store
MySQL's JSON Data Type and Document Store
 
Explain2
Explain2Explain2
Explain2
 
The MySQL Query Optimizer Explained Through Optimizer Trace
The MySQL Query Optimizer Explained Through Optimizer TraceThe MySQL Query Optimizer Explained Through Optimizer Trace
The MySQL Query Optimizer Explained Through Optimizer Trace
 
Tugas praktikum smbd
Tugas praktikum smbdTugas praktikum smbd
Tugas praktikum smbd
 
Cat database
Cat databaseCat database
Cat database
 
Lecture5 my sql statements by okello erick
Lecture5 my sql statements by okello erickLecture5 my sql statements by okello erick
Lecture5 my sql statements by okello erick
 
MySQL constraints
MySQL constraintsMySQL constraints
MySQL constraints
 

Viewers also liked

Brandstreaming: an introduction
Brandstreaming: an introductionBrandstreaming: an introduction
Brandstreaming: an introductionJonny rosemont
 
A Little Pumpkin Likes Reading Books
A Little Pumpkin Likes Reading BooksA Little Pumpkin Likes Reading Books
A Little Pumpkin Likes Reading BooksPEPY Empowering Youth
 
Chance challenge change Arise Roby
Chance challenge change   Arise RobyChance challenge change   Arise Roby
Chance challenge change Arise RobyArise Roby
 
Blackwell Esteem AFSL
Blackwell Esteem AFSLBlackwell Esteem AFSL
Blackwell Esteem AFSLsamueltay77
 
Where can tell me who I am?
Where can tell me who I am?Where can tell me who I am?
Where can tell me who I am?seltzoid
 
Why scala - executive overview
Why scala - executive overviewWhy scala - executive overview
Why scala - executive overviewRazvan Cojocaru
 
Parent meeting 2 add sub 2007
Parent meeting 2   add sub 2007Parent meeting 2   add sub 2007
Parent meeting 2 add sub 2007Shane
 
ROR -Igal Assaf Paris sous la neige
ROR -Igal Assaf  Paris sous la neigeROR -Igal Assaf  Paris sous la neige
ROR -Igal Assaf Paris sous la neigeIgal Assaf
 
Sainico & Warom - LED Catalog
Sainico & Warom - LED CatalogSainico & Warom - LED Catalog
Sainico & Warom - LED Catalogsainico
 
Google Ground Kiajánló
Google Ground KiajánlóGoogle Ground Kiajánló
Google Ground Kiajánlópontrendezveny
 
205180 cm with jde
205180 cm with jde205180 cm with jde
205180 cm with jdep6academy
 
The new masters of management
The new masters of managementThe new masters of management
The new masters of managementrsoosaar
 

Viewers also liked (20)

Brandstreaming: an introduction
Brandstreaming: an introductionBrandstreaming: an introduction
Brandstreaming: an introduction
 
A Little Pumpkin Likes Reading Books
A Little Pumpkin Likes Reading BooksA Little Pumpkin Likes Reading Books
A Little Pumpkin Likes Reading Books
 
2nd Easter A(2)
2nd Easter A(2)2nd Easter A(2)
2nd Easter A(2)
 
nullcon 2011 - Buffer UnderRun Exploits
nullcon 2011 - Buffer UnderRun Exploitsnullcon 2011 - Buffer UnderRun Exploits
nullcon 2011 - Buffer UnderRun Exploits
 
B.j. mate i
B.j. mate iB.j. mate i
B.j. mate i
 
Chance challenge change Arise Roby
Chance challenge change   Arise RobyChance challenge change   Arise Roby
Chance challenge change Arise Roby
 
The Anatomy Of The Idea
The Anatomy Of The IdeaThe Anatomy Of The Idea
The Anatomy Of The Idea
 
Blackwell Esteem AFSL
Blackwell Esteem AFSLBlackwell Esteem AFSL
Blackwell Esteem AFSL
 
Where can tell me who I am?
Where can tell me who I am?Where can tell me who I am?
Where can tell me who I am?
 
Why scala - executive overview
Why scala - executive overviewWhy scala - executive overview
Why scala - executive overview
 
August 2012
August 2012August 2012
August 2012
 
SGGSWU Prospectus 2016-17
SGGSWU Prospectus 2016-17SGGSWU Prospectus 2016-17
SGGSWU Prospectus 2016-17
 
Parent meeting 2 add sub 2007
Parent meeting 2   add sub 2007Parent meeting 2   add sub 2007
Parent meeting 2 add sub 2007
 
ROR -Igal Assaf Paris sous la neige
ROR -Igal Assaf  Paris sous la neigeROR -Igal Assaf  Paris sous la neige
ROR -Igal Assaf Paris sous la neige
 
Gscm1
Gscm1Gscm1
Gscm1
 
Sainico & Warom - LED Catalog
Sainico & Warom - LED CatalogSainico & Warom - LED Catalog
Sainico & Warom - LED Catalog
 
Google Ground Kiajánló
Google Ground KiajánlóGoogle Ground Kiajánló
Google Ground Kiajánló
 
205180 cm with jde
205180 cm with jde205180 cm with jde
205180 cm with jde
 
The new masters of management
The new masters of managementThe new masters of management
The new masters of management
 
Modul 5 kb 1
Modul 5   kb 1Modul 5   kb 1
Modul 5 kb 1
 

Similar to My SQL Idiosyncrasies That Bite OTN

MySQL Idiosyncrasies That Bite SF
MySQL Idiosyncrasies That Bite SFMySQL Idiosyncrasies That Bite SF
MySQL Idiosyncrasies That Bite SFRonald Bradford
 
MySQL Best Practices - OTN
MySQL Best Practices - OTNMySQL Best Practices - OTN
MySQL Best Practices - OTNRonald Bradford
 
OSMC 2008 | Monitoring MySQL by Geert Vanderkelen
OSMC 2008 | Monitoring MySQL by Geert VanderkelenOSMC 2008 | Monitoring MySQL by Geert Vanderkelen
OSMC 2008 | Monitoring MySQL by Geert VanderkelenNETWAYS
 
Fluentd 20150918 no_demo_public
Fluentd 20150918 no_demo_publicFluentd 20150918 no_demo_public
Fluentd 20150918 no_demo_publicSaewoong Lee
 
MySQL Best Practices - OTN LAD Tour
MySQL Best Practices - OTN LAD TourMySQL Best Practices - OTN LAD Tour
MySQL Best Practices - OTN LAD TourRonald Bradford
 
- Php myadmin sql dump-- version 4.0.10.7-- httpwww.php
 - Php myadmin sql dump-- version 4.0.10.7-- httpwww.php - Php myadmin sql dump-- version 4.0.10.7-- httpwww.php
- Php myadmin sql dump-- version 4.0.10.7-- httpwww.phpssuserfa5723
 
Modern query optimisation features in MySQL 8.
Modern query optimisation features in MySQL 8.Modern query optimisation features in MySQL 8.
Modern query optimisation features in MySQL 8.Mydbops
 
Beyond php - it's not (just) about the code
Beyond php - it's not (just) about the codeBeyond php - it's not (just) about the code
Beyond php - it's not (just) about the codeWim Godden
 
Beyond php - it's not (just) about the code
Beyond php - it's not (just) about the codeBeyond php - it's not (just) about the code
Beyond php - it's not (just) about the codeWim Godden
 
Short Intro to PHP and MySQL
Short Intro to PHP and MySQLShort Intro to PHP and MySQL
Short Intro to PHP and MySQLJussi Pohjolainen
 
Character Encoding - MySQL DevRoom - FOSDEM 2015
Character Encoding - MySQL DevRoom - FOSDEM 2015Character Encoding - MySQL DevRoom - FOSDEM 2015
Character Encoding - MySQL DevRoom - FOSDEM 2015mushupl
 
My sql regis_handsonlab
My sql regis_handsonlabMy sql regis_handsonlab
My sql regis_handsonlabsqlhjalp
 
Percona Live 4/15/15: Transparent sharding database virtualization engine (DVE)
Percona Live 4/15/15: Transparent sharding database virtualization engine (DVE)Percona Live 4/15/15: Transparent sharding database virtualization engine (DVE)
Percona Live 4/15/15: Transparent sharding database virtualization engine (DVE)Tesora
 

Similar to My SQL Idiosyncrasies That Bite OTN (20)

MySQL Idiosyncrasies That Bite SF
MySQL Idiosyncrasies That Bite SFMySQL Idiosyncrasies That Bite SF
MySQL Idiosyncrasies That Bite SF
 
MySQL SQL Tutorial
MySQL SQL TutorialMySQL SQL Tutorial
MySQL SQL Tutorial
 
MySQL Best Practices - OTN
MySQL Best Practices - OTNMySQL Best Practices - OTN
MySQL Best Practices - OTN
 
OSMC 2008 | Monitoring MySQL by Geert Vanderkelen
OSMC 2008 | Monitoring MySQL by Geert VanderkelenOSMC 2008 | Monitoring MySQL by Geert Vanderkelen
OSMC 2008 | Monitoring MySQL by Geert Vanderkelen
 
MySQLinsanity
MySQLinsanityMySQLinsanity
MySQLinsanity
 
Fluentd 20150918 no_demo_public
Fluentd 20150918 no_demo_publicFluentd 20150918 no_demo_public
Fluentd 20150918 no_demo_public
 
Mysql56 replication
Mysql56 replicationMysql56 replication
Mysql56 replication
 
Mysql basics1
Mysql basics1Mysql basics1
Mysql basics1
 
Hanya contoh saja dari xampp
Hanya contoh saja dari xamppHanya contoh saja dari xampp
Hanya contoh saja dari xampp
 
Curso de MySQL 5.7
Curso de MySQL 5.7Curso de MySQL 5.7
Curso de MySQL 5.7
 
MySQL Best Practices - OTN LAD Tour
MySQL Best Practices - OTN LAD TourMySQL Best Practices - OTN LAD Tour
MySQL Best Practices - OTN LAD Tour
 
- Php myadmin sql dump-- version 4.0.10.7-- httpwww.php
 - Php myadmin sql dump-- version 4.0.10.7-- httpwww.php - Php myadmin sql dump-- version 4.0.10.7-- httpwww.php
- Php myadmin sql dump-- version 4.0.10.7-- httpwww.php
 
Modern query optimisation features in MySQL 8.
Modern query optimisation features in MySQL 8.Modern query optimisation features in MySQL 8.
Modern query optimisation features in MySQL 8.
 
Beyond php - it's not (just) about the code
Beyond php - it's not (just) about the codeBeyond php - it's not (just) about the code
Beyond php - it's not (just) about the code
 
Beyond php - it's not (just) about the code
Beyond php - it's not (just) about the codeBeyond php - it's not (just) about the code
Beyond php - it's not (just) about the code
 
Short Intro to PHP and MySQL
Short Intro to PHP and MySQLShort Intro to PHP and MySQL
Short Intro to PHP and MySQL
 
Php forum2015 tomas_final
Php forum2015 tomas_finalPhp forum2015 tomas_final
Php forum2015 tomas_final
 
Character Encoding - MySQL DevRoom - FOSDEM 2015
Character Encoding - MySQL DevRoom - FOSDEM 2015Character Encoding - MySQL DevRoom - FOSDEM 2015
Character Encoding - MySQL DevRoom - FOSDEM 2015
 
My sql regis_handsonlab
My sql regis_handsonlabMy sql regis_handsonlab
My sql regis_handsonlab
 
Percona Live 4/15/15: Transparent sharding database virtualization engine (DVE)
Percona Live 4/15/15: Transparent sharding database virtualization engine (DVE)Percona Live 4/15/15: Transparent sharding database virtualization engine (DVE)
Percona Live 4/15/15: Transparent sharding database virtualization engine (DVE)
 

More from Ronald Bradford

Successful Scalability Principles - Part 1
Successful Scalability Principles - Part 1Successful Scalability Principles - Part 1
Successful Scalability Principles - Part 1Ronald Bradford
 
MySQL Backup and Recovery Essentials
MySQL Backup and Recovery EssentialsMySQL Backup and Recovery Essentials
MySQL Backup and Recovery EssentialsRonald Bradford
 
The History and Future of the MySQL ecosystem
The History and Future of the MySQL ecosystemThe History and Future of the MySQL ecosystem
The History and Future of the MySQL ecosystemRonald Bradford
 
Lessons Learned Managing Large AWS Environments
Lessons Learned Managing Large AWS EnvironmentsLessons Learned Managing Large AWS Environments
Lessons Learned Managing Large AWS EnvironmentsRonald Bradford
 
Monitoring your technology stack with New Relic
Monitoring your technology stack with New RelicMonitoring your technology stack with New Relic
Monitoring your technology stack with New RelicRonald Bradford
 
MySQL Scalability Mistakes - OTN
MySQL Scalability Mistakes - OTNMySQL Scalability Mistakes - OTN
MySQL Scalability Mistakes - OTNRonald Bradford
 
Successful MySQL Scalability
Successful MySQL ScalabilitySuccessful MySQL Scalability
Successful MySQL ScalabilityRonald Bradford
 
Capturing, Analyzing and Optimizing MySQL
Capturing, Analyzing and Optimizing MySQLCapturing, Analyzing and Optimizing MySQL
Capturing, Analyzing and Optimizing MySQLRonald Bradford
 
10x Performance Improvements
10x Performance Improvements10x Performance Improvements
10x Performance ImprovementsRonald Bradford
 
LIFTOFF - MySQLCamp for the Oracle DBA
LIFTOFF - MySQLCamp for the Oracle DBALIFTOFF - MySQLCamp for the Oracle DBA
LIFTOFF - MySQLCamp for the Oracle DBARonald Bradford
 
IGNITION - MySQLCamp for the Oracle DBA
IGNITION - MySQLCamp for the Oracle DBAIGNITION - MySQLCamp for the Oracle DBA
IGNITION - MySQLCamp for the Oracle DBARonald Bradford
 
10x Performance Improvements - A Case Study
10x Performance Improvements - A Case Study10x Performance Improvements - A Case Study
10x Performance Improvements - A Case StudyRonald Bradford
 
Dolphins Now And Beyond - FOSDEM 2010
Dolphins Now And Beyond - FOSDEM 2010Dolphins Now And Beyond - FOSDEM 2010
Dolphins Now And Beyond - FOSDEM 2010Ronald Bradford
 
Drizzle - Status, Principles and Ecosystem
Drizzle - Status, Principles and EcosystemDrizzle - Status, Principles and Ecosystem
Drizzle - Status, Principles and EcosystemRonald Bradford
 
MySQL for the Oracle DBA - Object Management
MySQL for the Oracle DBA - Object ManagementMySQL for the Oracle DBA - Object Management
MySQL for the Oracle DBA - Object ManagementRonald Bradford
 
Know Your Competitor - Oracle 10g Express Edition
Know Your Competitor - Oracle 10g Express EditionKnow Your Competitor - Oracle 10g Express Edition
Know Your Competitor - Oracle 10g Express EditionRonald Bradford
 
MySQL For Oracle DBA's and Developers
MySQL For Oracle DBA's and DevelopersMySQL For Oracle DBA's and Developers
MySQL For Oracle DBA's and DevelopersRonald Bradford
 
MySQL For Oracle Developers
MySQL For Oracle DevelopersMySQL For Oracle Developers
MySQL For Oracle DevelopersRonald Bradford
 
The Ideal Performance Architecture
The Ideal Performance ArchitectureThe Ideal Performance Architecture
The Ideal Performance ArchitectureRonald Bradford
 

More from Ronald Bradford (20)

Successful Scalability Principles - Part 1
Successful Scalability Principles - Part 1Successful Scalability Principles - Part 1
Successful Scalability Principles - Part 1
 
MySQL Backup and Recovery Essentials
MySQL Backup and Recovery EssentialsMySQL Backup and Recovery Essentials
MySQL Backup and Recovery Essentials
 
The History and Future of the MySQL ecosystem
The History and Future of the MySQL ecosystemThe History and Future of the MySQL ecosystem
The History and Future of the MySQL ecosystem
 
Lessons Learned Managing Large AWS Environments
Lessons Learned Managing Large AWS EnvironmentsLessons Learned Managing Large AWS Environments
Lessons Learned Managing Large AWS Environments
 
Monitoring your technology stack with New Relic
Monitoring your technology stack with New RelicMonitoring your technology stack with New Relic
Monitoring your technology stack with New Relic
 
MySQL Scalability Mistakes - OTN
MySQL Scalability Mistakes - OTNMySQL Scalability Mistakes - OTN
MySQL Scalability Mistakes - OTN
 
Successful MySQL Scalability
Successful MySQL ScalabilitySuccessful MySQL Scalability
Successful MySQL Scalability
 
Capturing, Analyzing and Optimizing MySQL
Capturing, Analyzing and Optimizing MySQLCapturing, Analyzing and Optimizing MySQL
Capturing, Analyzing and Optimizing MySQL
 
10x Performance Improvements
10x Performance Improvements10x Performance Improvements
10x Performance Improvements
 
LIFTOFF - MySQLCamp for the Oracle DBA
LIFTOFF - MySQLCamp for the Oracle DBALIFTOFF - MySQLCamp for the Oracle DBA
LIFTOFF - MySQLCamp for the Oracle DBA
 
IGNITION - MySQLCamp for the Oracle DBA
IGNITION - MySQLCamp for the Oracle DBAIGNITION - MySQLCamp for the Oracle DBA
IGNITION - MySQLCamp for the Oracle DBA
 
10x Performance Improvements - A Case Study
10x Performance Improvements - A Case Study10x Performance Improvements - A Case Study
10x Performance Improvements - A Case Study
 
Dolphins Now And Beyond - FOSDEM 2010
Dolphins Now And Beyond - FOSDEM 2010Dolphins Now And Beyond - FOSDEM 2010
Dolphins Now And Beyond - FOSDEM 2010
 
Drizzle - Status, Principles and Ecosystem
Drizzle - Status, Principles and EcosystemDrizzle - Status, Principles and Ecosystem
Drizzle - Status, Principles and Ecosystem
 
SQL v No SQL
SQL v No SQLSQL v No SQL
SQL v No SQL
 
MySQL for the Oracle DBA - Object Management
MySQL for the Oracle DBA - Object ManagementMySQL for the Oracle DBA - Object Management
MySQL for the Oracle DBA - Object Management
 
Know Your Competitor - Oracle 10g Express Edition
Know Your Competitor - Oracle 10g Express EditionKnow Your Competitor - Oracle 10g Express Edition
Know Your Competitor - Oracle 10g Express Edition
 
MySQL For Oracle DBA's and Developers
MySQL For Oracle DBA's and DevelopersMySQL For Oracle DBA's and Developers
MySQL For Oracle DBA's and Developers
 
MySQL For Oracle Developers
MySQL For Oracle DevelopersMySQL For Oracle Developers
MySQL For Oracle Developers
 
The Ideal Performance Architecture
The Ideal Performance ArchitectureThe Ideal Performance Architecture
The Ideal Performance Architecture
 

Recently uploaded

Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfAddepto
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfLoriGlavin3
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenHervé Boutemy
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii SoldatenkoFwdays
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsRizwan Syed
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsPixlogix Infotech
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024BookNet Canada
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024Stephanie Beckett
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyAlfredo García Lavilla
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Mattias Andersson
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024Lorenzo Miniero
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfPrecisely
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESmohitsingh558521
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxLoriGlavin3
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024Lonnie McRorey
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxLoriGlavin3
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxLoriGlavin3
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024BookNet Canada
 

Recently uploaded (20)

Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
Transcript: New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
Gen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdfGen AI in Business - Global Trends Report 2024.pdf
Gen AI in Business - Global Trends Report 2024.pdf
 
Moving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdfMoving Beyond Passwords: FIDO Paris Seminar.pdf
Moving Beyond Passwords: FIDO Paris Seminar.pdf
 
DevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache MavenDevoxxFR 2024 Reproducible Builds with Apache Maven
DevoxxFR 2024 Reproducible Builds with Apache Maven
 
"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko"Debugging python applications inside k8s environment", Andrii Soldatenko
"Debugging python applications inside k8s environment", Andrii Soldatenko
 
Scanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL CertsScanning the Internet for External Cloud Exposures via SSL Certs
Scanning the Internet for External Cloud Exposures via SSL Certs
 
The Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and ConsThe Ultimate Guide to Choosing WordPress Pros and Cons
The Ultimate Guide to Choosing WordPress Pros and Cons
 
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
New from BookNet Canada for 2024: BNC CataList - Tech Forum 2024
 
What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024What's New in Teams Calling, Meetings and Devices March 2024
What's New in Teams Calling, Meetings and Devices March 2024
 
Commit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easyCommit 2024 - Secret Management made easy
Commit 2024 - Secret Management made easy
 
Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?Are Multi-Cloud and Serverless Good or Bad?
Are Multi-Cloud and Serverless Good or Bad?
 
SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024SIP trunking in Janus @ Kamailio World 2024
SIP trunking in Janus @ Kamailio World 2024
 
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdfHyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
Hyperautomation and AI/ML: A Strategy for Digital Transformation Success.pdf
 
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICESSALESFORCE EDUCATION CLOUD | FEXLE SERVICES
SALESFORCE EDUCATION CLOUD | FEXLE SERVICES
 
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptxMerck Moving Beyond Passwords: FIDO Paris Seminar.pptx
Merck Moving Beyond Passwords: FIDO Paris Seminar.pptx
 
TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024TeamStation AI System Report LATAM IT Salaries 2024
TeamStation AI System Report LATAM IT Salaries 2024
 
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptxUse of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
Use of FIDO in the Payments and Identity Landscape: FIDO Paris Seminar.pptx
 
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptxThe Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
The Role of FIDO in a Cyber Secure Netherlands: FIDO Paris Seminar.pptx
 
DMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special EditionDMCC Future of Trade Web3 - Special Edition
DMCC Future of Trade Web3 - Special Edition
 
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
New from BookNet Canada for 2024: Loan Stars - Tech Forum 2024
 

My SQL Idiosyncrasies That Bite OTN

  • 1. MySQL Idiosyncrasies that BITE MySQL Idiosyncrasies That BITE - 2010.10 Title Ronald Bradford http://ronaldbradford.com OTN LAD Tour 2010 South America 2010.10 Ronald Bradford http://ronaldbradford.com @RonaldBradford #OTN #LAOUC
  • 2. MySQL Idiosyncrasies That BITE - 2010.10 Definitions idiosyncrasy [id-ee-uh-sing-kruh-see, -sin-] –noun,plural-sies. A characteristic, habit, mannerism, or the like, that is peculiar to ... http://dictionary.com
  • 3. MySQL Idiosyncrasies That BITE - 2010.10 About RDBMS - Oracle != MySQL Product Age Development philosophies Target audience Developer practices Installed versions
  • 4. MySQL Idiosyncrasies That BITE - 2010.10 Expected RDBMS Characteristics Data Integrity Transactions ACID Data Security ANSI SQL
  • 5. MySQL Idiosyncrasies That BITE - 2010.10 These RDBMS characteristics are NOT enabled by default in MySQL WARNING !!! (*)
  • 6. MySQL Idiosyncrasies That BITE - 2010.10 MySQL Terminology Storage Engines MyISAM - Default InnoDB - Default from MySQL 5.5 Transactions Non Transactional Engine(s) Transactional Engine(s)
  • 7. MySQL Idiosyncrasies That BITE - 2010.10 1. Data Integrity
  • 8. MySQL Idiosyncrasies That BITE - 2010.10 Data Integrity - Expected CREATE TABLE orders ( qty TINYINT UNSIGNED NOT NULL, created TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET latin1; INSERT INTO orders(qty) VALUES (0), (100), (255); SELECT * FROM orders; +-----+---------------------+ | qty | created | +-----+---------------------+ | 0 | 2010-10-25 12:22:22 | | 100 | 2010-10-25 12:22:22 | | 255 | 2010-10-25 12:22:22 | +-----+---------------------+ ✔
  • 9. MySQL Idiosyncrasies That BITE - 2010.10 Data Integrity - Unexpected mysql> INSERT INTO orders (qty) VALUES (-1), (9000); mysql> SELECT * FROM orders; +-----+---------------------+ | qty | created | +-----+---------------------+ | 0 | 2010-10-25 12:22:22 | | 100 | 2010-10-25 12:22:22 | | 255 | 2010-10-25 12:22:22 | | 0 | 2010-10-25 12:23:06 | | 255 | 2010-10-25 12:23:06 | +-----+---------------------+ //CREATE TABLE orders ( // qty TINYINT UNSIGNED NOT NULL, ✘
  • 10. MySQL Idiosyncrasies That BITE - 2010.10 Data Integrity - Unexpected mysql> INSERT INTO orders (qty) VALUES (-1), (9000); mysql> SELECT * FROM orders; +-----+---------------------+ | qty | created | +-----+---------------------+ | 0 | 2010-10-25 12:22:22 | | 100 | 2010-10-25 12:22:22 | | 255 | 2010-10-25 12:22:22 | | 0 | 2010-10-25 12:23:06 | | 255 | 2010-10-25 12:23:06 | +-----+---------------------+ //CREATE TABLE orders ( // qty TINYINT UNSIGNED NOT NULL, ✘ TINYINT is 1 byte. UNSIGNED supports values 0-255
  • 11. MySQL Idiosyncrasies That BITE - 2010.10 Data Integrity - Warnings mysql> INSERT INTO orders (qty) VALUES (-1), (9000); Query OK, 2 rows affected, 2 warnings (0.05 sec) mysql> SHOW WARNINGS; +---------+------+----------------------------------------------+ | Level | Code | Message | +---------+------+----------------------------------------------+ | Warning | 1264 | Out of range value for column 'qty' at row 1 | | Warning | 1264 | Out of range value for column 'qty' at row 2 | +---------+------+----------------------------------------------+
  • 12. MySQL Idiosyncrasies That BITE - 2010.10 Data Integrity - Unexpected (2) mysql> INSERT INTO customers (name) -> VALUES ('RONALD BRADFORD'), -> ('FRANCISCO MUNOZ ALVAREZ'); mysql> SELECT * FROM customers; +----------------------+ | name | +----------------------+ | RONALD BRADFORD | | FRANCISCO MUNOZ ALVA | +----------------------+ 2 rows in set (0.00 sec) ✘
  • 13. MySQL Idiosyncrasies That BITE - 2010.10 Data Integrity - Warnings (2) INSERT INTO customers (name) VALUES ('RONALD BRADFORD'), ('FRANCISCO MUNOZ ALVAREZ'); Query OK, 2 rows affected, 1 warning (0.29 sec) mysql> SHOW WARNINGS; +---------+------+-------------------------------------------+ | Level | Code | Message | +---------+------+-------------------------------------------+ | Warning | 1265 | Data truncated for column 'name' at row 2 | +---------+------+-------------------------------------------+
  • 14. MySQL Idiosyncrasies That BITE - 2010.10 Data Integrity with Dates - Warnings mysql> INSERT INTO sample_date (d) VALUES ('2010-02-31'); Query OK, 1 row affected, 1 warning (0.00 sec) mysql> SHOW WARNINGS; +---------+------+----------------------------------------+ | Level | Code | Message | +---------+------+----------------------------------------+ | Warning | 1265 | Data truncated for column 'd' at row 1 | +---------+------+----------------------------------------+ mysql> SELECT * FROM sample_date; +------------+ | d | +------------+ | 0000-00-00 | +------------+ ✘
  • 15. MySQL Idiosyncrasies That BITE - 2010.10 SHOW WARNINGS http://dev.mysql.com/doc/refman/5.1/en/show-warnings.html
  • 16. MySQL Idiosyncrasies That BITE - 2010.10 Using SQL_MODE for Data Integrity SQL_MODE = STRICT_ALL_TABLES; http://dev.mysql.com/doc/refman/5.1/en/server-sql-mode.html Recommended Configuration
  • 17. MySQL Idiosyncrasies That BITE - 2010.10 Data Integrity - Expected mysql> SET SESSION SQL_MODE=STRICT_ALL_TABLES; mysql> TRUNCATE TABLE sample_data; mysql> INSERT INTO sample_data(i) VALUES (0), (100), (255); mysql> INSERT INTO sample_data (i) VALUES (-1), (9000); ERROR 1264 (22003): Out of range value for column 'i' at row 1 mysql> SELECT * FROM sample_data; +-----+------+---------------------+ | i | c | t | +-----+------+---------------------+ | 0 | NULL | 2010-06-06 14:39:48 | | 100 | NULL | 2010-06-06 14:39:48 | | 255 | NULL | 2010-06-06 14:39:48 | +-----+------+---------------------+ 3 rows in set (0.00 sec) ✔
  • 18. MySQL Idiosyncrasies That BITE - 2010.10 Data Integrity with Dates - Expected mysql> SET SESSION SQL_MODE=STRICT_ALL_TABLES; mysql> INSERT INTO sample_date (d) VALUES ('2010-02-31'); ERROR 1292 (22007): Incorrect date value: '2010-02-31' for column 'd' at row 1 ✔
  • 19. MySQL Idiosyncrasies That BITE - 2010.10 Data Integrity with Dates - Unexpected mysql> INSERT INTO sample_date (d) VALUES ('2010-00-00'); mysql> INSERT INTO sample_date (d) VALUES ('2010-00-05'); mysql> INSERT INTO sample_date (d) VALUES ('0000-00-00'); mysql> SELECT * FROM sample_date; +------------+ | d | +------------+ | 2010-00-00 | | 2010-00-05 | | 0000-00-00 | +------------+ ✘
  • 20. MySQL Idiosyncrasies That BITE - 2010.10 Using SQL_MODE for Date Integrity SQL_MODE = STRICT_ALL_TABLES, NO_ZERO_DATE, NO_ZERO_IN_DATE; http://dev.mysql.com/doc/refman/5.1/en/server-sql-mode.html Recommended Configuration
  • 21. MySQL Idiosyncrasies That BITE - 2010.10 Data Integrity with Dates - Expected mysql> SET SESSION SQL_MODE='STRICT_ALL_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE'; mysql> TRUNCATE TABLE sample_date; mysql> INSERT INTO sample_date (d) VALUES ('2010-00-00'); ERROR 1292 (22007): Incorrect date value: '2010-00-00' for column 'd' at row 1 mysql> INSERT INTO sample_date (d) VALUES ('2010-00-05'); ERROR 1292 (22007): Incorrect date value: '2010-00-05' for column 'd' at row 1 mysql> INSERT INTO sample_date (d) VALUES ('0000-00-00'); ERROR 1292 (22007): Incorrect date value: '0000-00-00' for column 'd' at row 1 mysql> SELECT * FROM sample_date; Empty set (0.00 sec) ✔
  • 22. MySQL Idiosyncrasies That BITE - 2010.10 2.Transactions
  • 23. MySQL Idiosyncrasies That BITE - 2010.10 Transactions Example - Tables DROP TABLE IF EXISTS parent; CREATE TABLE parent ( id INT UNSIGNED NOT NULL AUTO_INCREMENT, val VARCHAR(10) NOT NULL, PRIMARY KEY (id), UNIQUE KEY (val) ) ENGINE=InnoDB DEFAULT CHARSET latin1; DROP TABLE IF EXISTS child; CREATE TABLE child ( id INT UNSIGNED NOT NULL AUTO_INCREMENT, parent_id INT UNSIGNED NOT NULL, created TIMESTAMP NOT NULL, PRIMARY KEY (id), INDEX (parent_id), FOREIGN KEY (parent_id) REFERENCES parent(id) ) ENGINE=InnoDB DEFAULT CHARSET latin1;
  • 24. MySQL Idiosyncrasies That BITE - 2010.10 Transactions Example - SQL START TRANSACTION; INSERT INTO parent(val) VALUES("a"); INSERT INTO child(parent_id,created) VALUES(LAST_INSERT_ID(),NOW()); # Expecting an error with next SQL INSERT INTO parent(val) VALUES("a"); ROLLBACK; SELECT * FROM parent; SELECT * FROM child;
  • 25. MySQL Idiosyncrasies That BITE - 2010.10 Transactions Example - Expected ... mysql> INSERT INTO parent (val) VALUES("a"); ERROR 1062 (23000): Duplicate entry 'a' for key 'val' mysql> ROLLBACK; mysql> SELECT * FROM parent; Empty set (0.00 sec) mysql> SELECT * FROM child; Empty set (0.00 sec) ✔
  • 26. MySQL Idiosyncrasies That BITE - 2010.10 Transactions Example - Tables DROP TABLE IF EXISTS parent; CREATE TABLE parent ( id INT UNSIGNED NOT NULL AUTO_INCREMENT, val VARCHAR(10) NOT NULL, PRIMARY KEY (id), UNIQUE KEY (val) ) ENGINE=MyISAM DEFAULT CHARSET latin1; DROP TABLE IF EXISTS child; CREATE TABLE child ( id INT UNSIGNED NOT NULL AUTO_INCREMENT, parent_id INT UNSIGNED NOT NULL, created TIMESTAMP NOT NULL, PRIMARY KEY (id), INDEX (parent_id) ) ENGINE=MyISAM DEFAULT CHARSET latin1; MyISAM is the current default if not specified
  • 27. MySQL Idiosyncrasies That BITE - 2010.10 Transactions Example - Unexpected mysql> INSERT INTO parent (val) VALUES("a"); ERROR 1062 (23000): Duplicate entry 'a' for key 'val' mysql> ROLLBACK; mysql> SELECT * FROM parent; +----+-----+ | id | val | +----+-----+ | 1 | a | +----+-----+ 1 row in set (0.00 sec) mysql> SELECT * FROM child; +----+-----------+---------------------+ | id | parent_id | created | +----+-----------+---------------------+ | 1 | 1 | 2010-06-03 13:53:38 | +----+-----------+---------------------+ 1 row in set (0.00 sec) ✘
  • 28. MySQL Idiosyncrasies That BITE - 2010.10 Transactions Example - Unexpected (2) mysql> ROLLBACK; Query OK, 0 rows affected, 1 warning (0.00 sec) mysql> SHOW WARNINGS; +---------+-------+------------------------------------- | Level | Code | Message | +---------+------+-------------------------------------- | Warning | 1196 | Some non-transactional changed tables couldn't be rolled back | +---------+------+-------------------------------------- ✘
  • 29. MySQL Idiosyncrasies That BITE - 2010.10 Transactions Solution mysql> SET GLOBAL storage_engine=InnoDB; # my.cnf [mysqld] default-storage-engine=InnoDB # NOTE: Requires server restart $ /etc/init.d/mysqld stop $ /etc/init.d/mysqld start http://dev.mysql.com/doc/refman/5.1/en/server-options.html#option_mysqld_default-storage-engine Recommended Configuration
  • 30. MySQL Idiosyncrasies That BITE - 2010.10 Why use Non Transactional Tables? No transaction overhead Much faster Less disk writes Lower disk space requirements Less memory requirements http://dev.mysql.com/doc/refman/5.1/en/storage-engine-compare-transactions.html
  • 31. MySQL Idiosyncrasies That BITE - 2010.10 3.Variable Scope
  • 32. MySQL Idiosyncrasies That BITE - 2010.10 Variable Scope Example mysql> CREATE TABLE test1(id INT UNSIGNED NOT NULL); mysql> SHOW CREATE TABLE test1G CREATE TABLE `test1` ( `id` int(10) unsigned NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 MyISAM is the current default if not specified
  • 33. MySQL Idiosyncrasies That BITE - 2010.10 Variable Scope Example (2) mysql> SHOW GLOBAL VARIABLES LIKE 'storage_engine'; +----------------+--------+ | Variable_name | Value | +----------------+--------+ | storage_engine | MyISAM | +----------------+--------+ mysql> SET GLOBAL storage_engine='InnoDB'; mysql> SHOW GLOBAL VARIABLES LIKE 'storage_engine'; +----------------+--------+ | Variable_name | Value | +----------------+--------+ | storage_engine | InnoDB | +----------------+--------+ Changing in MySQL 5.5
  • 34. MySQL Idiosyncrasies That BITE - 2010.10 Variable Scope Example (3) mysql> SHOW GLOBAL VARIABLES LIKE 'storage_engine'; +----------------+--------+ | Variable_name | Value | +----------------+--------+ | storage_engine | InnoDB | +----------------+--------+ mysql> DROP TABLE test1; mysql> CREATE TABLE test1(id INT UNSIGNED NOT NULL); mysql> SHOW CREATE TABLE test1G CREATE TABLE `test1` ( `id` int(10) unsigned NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ✘
  • 35. MySQL Idiosyncrasies That BITE - 2010.10 Variable Scope Example (4) mysql> SHOW GLOBAL VARIABLES LIKE 'storage_engine'; +----------------+--------+ | Variable_name | Value | +----------------+--------+ | storage_engine | InnoDB | +----------------+--------+
  • 36. MySQL Idiosyncrasies That BITE - 2010.10 Variable Scope Example (4) mysql> SHOW GLOBAL VARIABLES LIKE 'storage_engine'; +----------------+--------+ | Variable_name | Value | +----------------+--------+ | storage_engine | InnoDB | +----------------+--------+ mysql> SHOW SESSION VARIABLES LIKE 'storage_engine'; +----------------+--------+ | Variable_name | Value | +----------------+--------+ | storage_engine | MyISAM | +----------------+--------+
  • 37. MySQL Idiosyncrasies That BITE - 2010.10 Variable Scope Example (4) mysql> SHOW GLOBAL VARIABLES LIKE 'storage_engine'; +----------------+--------+ | Variable_name | Value | +----------------+--------+ | storage_engine | InnoDB | +----------------+--------+ mysql> SHOW SESSION VARIABLES LIKE 'storage_engine'; +----------------+--------+ | Variable_name | Value | +----------------+--------+ | storage_engine | MyISAM | +----------------+--------+ MySQLVariables have two scopes. SESSION & GLOBAL
  • 38. MySQL Idiosyncrasies That BITE - 2010.10 Variable Scope Syntax SHOW [GLOBAL | SESSION]VARIABLES; SET [GLOBAL | SESSION] variable = value; Default is GLOBAL since 5.0.2 http://dev.mysql.com/doc/refman/5.1/en/user-variables.html http://dev.mysql.com/doc/refman/5.1/en/set-option.html
  • 39. MySQL Idiosyncrasies That BITE - 2010.10 Variable Scope Precautions Persistent connections (e.g. Java) Replication SQL_THREAD Be careful of existing connections!
  • 40. MySQL Idiosyncrasies That BITE - 2010.10 4. Storage Engines
  • 41. MySQL Idiosyncrasies That BITE - 2010.10 Storage Engines Example - Creation CREATE TABLE test1 ( id INT UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET latin1; SHOW CREATE TABLE test1G *************************** 1. row ************* Table: test1 Create Table: CREATE TABLE `test1` ( `id` int(10) unsigned NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ✘
  • 42. MySQL Idiosyncrasies That BITE - 2010.10 Storage Engines Example - Creation CREATE TABLE test1 ( id INT UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET latin1; SHOW CREATE TABLE test1G *************************** 1. row ************* Table: test1 Create Table: CREATE TABLE `test1` ( `id` int(10) unsigned NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=latin1 ✘ Even specified the storage engine reverted to the default
  • 43. MySQL Idiosyncrasies That BITE - 2010.10 Storage Engines Example - Unexpected CREATE TABLE test1 ( id INT UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET latin1; Query OK, 0 rows affected, 2 warnings (0.13 sec) SHOW WARNINGS; +---------+------+-----------------------------------------------+ | Level | Code | Message | +---------+------+-----------------------------------------------+ | Warning | 1286 | Unknown table engine 'InnoDB' | | Warning | 1266 | Using storage engine MyISAM for table 'test1' | +---------+------+-----------------------------------------------+ 2 rows in set (0.00 sec)
  • 44. MySQL Idiosyncrasies That BITE - 2010.10 Storage Engines Example - Cause mysql> SHOW ENGINES; +------------+---------+-------------------------+--------------+ | Engine | Support | Comment | Transactions | +------------+---------+-------------------------+--------------+ | InnoDB | NO | Supports transaction... | NULL | | MEMORY | YES | Hash based, stored i... | NO | | MyISAM | DEFAULT | Default engine as ... | NO |
  • 45. MySQL Idiosyncrasies That BITE - 2010.10 Storage Engines Example - Unexpected (2) mysql> CREATE TABLE test1 id INT UNSIGNED NOT NULL ) ENGINE=InnDB DEFAULT CHARSET latin1; Query OK, 0 rows affected, 2 warnings (0.11 sec) mysql> SHOW WARNINGS; +---------+------+-----------------------------------------------+ | Level | Code | Message | +---------+------+-----------------------------------------------+ | Warning | 1286 | Unknown table engine 'InnDB' | | Warning | 1266 | Using storage engine MyISAM for table 'test1' | +---------+------+-----------------------------------------------+ ✘ Be careful of spelling mistakes as well.
  • 46. MySQL Idiosyncrasies That BITE - 2010.10 Using SQL_MODE for Storage Engines SQL_MODE = STRICT_ALL_TABLES, NO_ZERO_DATE, NO_ZERO_IN_DATE, NO_ENGINE_SUBSTITUTION; http://dev.mysql.com/doc/refman/5.1/en/server-sql-mode.html Recommended Configuration
  • 47. MySQL Idiosyncrasies That BITE - 2010.10 Storage Engines Example - Solution SET SESSION SQL_MODE=NO_ENGINE_SUBSTITUTION; DROP TABLE IF EXISTS test3; CREATE TABLE test3 ( id INT UNSIGNED NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET latin1; ERROR 1286 (42000): Unknown table engine 'InnoDB' ✔
  • 48. MySQL Idiosyncrasies That BITE - 2010.10 5.ACID
  • 49. MySQL Idiosyncrasies That BITE - 2010.10 Atomicity - All or nothing
  • 50. MySQL Idiosyncrasies That BITE - 2010.10 Atomicity - Table DROP TABLE IF EXISTS accounts; CREATE TABLE accounts( id INT UNSIGNED NOT NULL AUTO_INCREMENT, username VARCHAR(10) NOT NULL, PRIMARY KEY (id), UNIQUE KEY (username) ) ENGINE=MyISAM DEFAULT CHARSET latin1;
  • 51. MySQL Idiosyncrasies That BITE - 2010.10 Atomicity - Data INSERT INTO accounts (username) VALUES('jane'),('jo'),('joe'),('joel'),('jame'), ('jamel'); mysql> SELECT * FROM accounts; +----+----------+ | id | username | +----+----------+ | 1 | jane | | 2 | jo | | 3 | joe | | 4 | joel | | 5 | jame | | 6 | jamel | +----+----------+ 6 rows in set (0.00 sec)
  • 52. MySQL Idiosyncrasies That BITE - 2010.10 Atomicity - Unexpected mysql> UPDATE accounts SET username=CONCAT(username,'l') ERROR 1062 (23000): Duplicate entry 'joel' for key 'username' mysql> SELECT * FROM accounts; +----+----------+ | id | username | +----+----------+ | 1 | janel | | 2 | jol | | 3 | joe | | 4 | joel | | 5 | jame | | 6 | jamel | +----+----------+ 6 rows in set (0.01 sec) ✘
  • 53. MySQL Idiosyncrasies That BITE - 2010.10 Atomicity - Unexpected (2) mysql> ROLLBACK; Query OK, 0 rows affected (0.00 sec) mysql> SELECT * FROM accounts; +----+----------+ | id | username | +----+----------+ | 1 | janel | | 2 | jol | | 3 | joe | | 4 | joel | ... ✘
  • 54. MySQL Idiosyncrasies That BITE - 2010.10 Atomicity - Unexpected (2) mysql> ROLLBACK; Query OK, 0 rows affected (0.00 sec) mysql> SELECT * FROM accounts; +----+----------+ | id | username | +----+----------+ | 1 | janel | | 2 | jol | | 3 | joe | | 4 | joel | ... ✘ Rollback has no effect on non transactional tables
  • 55. MySQL Idiosyncrasies That BITE - 2010.10 Atomicity - Transactional Table CREATE TABLE accounts( id INT UNSIGNED NOT NULL AUTO_INCREMENT, username VARCHAR(10) NOT NULL, PRIMARY KEY (id), UNIQUE KEY (username) ) ENGINE=InnoDB DEFAULT CHARSET latin1; INSERT INTO accounts (username) VALUES('jane'),('jo')... UPDATE accounts SET username=CONCAT(username,'l'); ERROR 1062 (23000): Duplicate entry 'joel' for key 'username' SELECT * FROM accounts; +----+----------+ | id | username | +----+----------+ | 5 | jame | | 6 | jamel | | 1 | jane | | 2 | jo | | 3 | joe | | 4 | joel | ✔
  • 56. MySQL Idiosyncrasies That BITE - 2010.10 Atomicity - Transactional Table CREATE TABLE accounts( id INT UNSIGNED NOT NULL AUTO_INCREMENT, username VARCHAR(10) NOT NULL, PRIMARY KEY (id), UNIQUE KEY (username) ) ENGINE=InnoDB DEFAULT CHARSET latin1; INSERT INTO accounts (username) VALUES('jane'),('jo')... UPDATE accounts SET username=CONCAT(username,'l'); ERROR 1062 (23000): Duplicate entry 'joel' for key 'username' SELECT * FROM accounts; +----+----------+ | id | username | +----+----------+ | 5 | jame | | 6 | jamel | | 1 | jane | | 2 | jo | | 3 | joe | | 4 | joel | ✔ Data remains unchanged
  • 57. MySQL Idiosyncrasies That BITE - 2010.10 Atomicity - Transactional Table mysql> ROLLBACK; Query OK, 0 rows affected (0.00 sec) mysql> SELECT * FROM accounts; +----+----------+ | id | username | +----+----------+ | 5 | jame | | 6 | jamel | | 1 | jane | | 2 | jo | | 3 | joe | | 4 | joel | +----+----------+ ✘
  • 58. MySQL Idiosyncrasies That BITE - 2010.10 Atomicity - Transactional Table mysql> ROLLBACK; Query OK, 0 rows affected (0.00 sec) mysql> SELECT * FROM accounts; +----+----------+ | id | username | +----+----------+ | 5 | jame | | 6 | jamel | | 1 | jane | | 2 | jo | | 3 | joe | | 4 | joel | +----+----------+ ✘ Data remains, INSERT was not rolled back?
  • 59. MySQL Idiosyncrasies That BITE - 2010.10 Atomicity - The culprit mysql> SHOW GLOBAL VARIABLES LIKE 'autocommit'; +---------------+-------+ | Variable_name | Value | +---------------+-------+ | autocommit | ON | +---------------+-------+
  • 60. MySQL Idiosyncrasies That BITE - 2010.10 Atomicity - The culprit mysql> SHOW GLOBAL VARIABLES LIKE 'autocommit'; +---------------+-------+ | Variable_name | Value | +---------------+-------+ | autocommit | ON | +---------------+-------+ The default for autocommit is ON. Great care is needed to change the default.
  • 61. MySQL Idiosyncrasies That BITE - 2010.10 Atomicity - Recommendations Always wrap SQL in transactions START TRANSACTION | BEGIN [WORK] COMMIT Recommended Practice
  • 62. MySQL Idiosyncrasies That BITE - 2010.10 Isolation - Transactions do not affect other transactions
  • 63. MySQL Idiosyncrasies That BITE - 2010.10 Transaction Isolation - Levels READ-UNCOMMITTED READ-COMMITTED REPEATABLE-READ SERIALIZABLE http://dev.mysql.com/doc/refman/5.1/en/set-transaction.html http://ronaldbradford.com/blog/understanding-mysql-innodb-transaction-isolation-2009-09-24/ MySQL supports 4 isolation levels
  • 64. MySQL Idiosyncrasies That BITE - 2010.10 Transaction Isolation - Default The default is REPEATABLE-READ SET GLOBAL tx_isolation = 'READ-COMMITTED'; This is a mistake http://ronaldbradford.com/blog/dont-assume-common-terminology-2010-03-03/
  • 65. MySQL Idiosyncrasies That BITE - 2010.10 Transaction Isolation - Default The default is REPEATABLE-READ SET GLOBAL tx_isolation = 'READ-COMMITTED'; This is a mistake http://ronaldbradford.com/blog/dont-assume-common-terminology-2010-03-03/ Common mistake by Oracle DBA's supporting MySQL
  • 66. MySQL Idiosyncrasies That BITE - 2010.10 Oracle READ COMMITTED != MySQL READ-COMMITTED
  • 67. MySQL Idiosyncrasies That BITE - 2010.10 Transaction Isolation - Binary Logging Errors SET GLOBAL tx_isolation='READ-COMMITTED'; Query OK, 0 rows affected (0.00 sec) mysql> insert into test1 values (1,'x'); ERROR 1598 (HY000): Binary logging not possible. Message: Transaction level 'READ-COMMITTED' in InnoDB is not safe for binlog mode 'STATEMENT' ✘ As of 5.1 this requires further configuration considerations
  • 68. MySQL Idiosyncrasies That BITE - 2010.10 Durability - No committed transactions are lost
  • 69. MySQL Idiosyncrasies That BITE - 2010.10 Data Safety MyISAM writes/flushes data every statement Does not flush indexes (*) InnoDB can relax durability flush all transactions per second innodb_flush_log_at_trx_commit sync_binlog innodb_support_xa
  • 70. MySQL Idiosyncrasies That BITE - 2010.10 Auto Recovery InnoDB has it MyISAM does not - (*) Indexes MYISAM-RECOVER=FORCE,BACKUP REPAIR TABLE myisamchk
  • 71. MySQL Idiosyncrasies That BITE - 2010.10 Recovery Time InnoDB is consistent Redo Log file size Slow performance in Undo (*) MyISAM grows with data volume
  • 72. MySQL Idiosyncrasies That BITE - 2010.10 InnoDB Auto Recovery Example InnoDB: Log scan progressed past the checkpoint lsn 0 188755039 100624 16:37:44 InnoDB: Database was not shut down normally! InnoDB: Starting crash recovery. InnoDB: Reading tablespace information from the .ibd files... InnoDB: Restoring possible half-written data pages from the doublewrite InnoDB: buffer... InnoDB: Doing recovery: scanned up to log sequence number 0 193997824 InnoDB: Doing recovery: scanned up to log sequence number 0 195151897 InnoDB: 1 transaction(s) which must be rolled back or cleaned up InnoDB: in total 105565 row operations to undo InnoDB: Trx id counter is 0 18688 100624 16:37:45 InnoDB: Starting an apply batch of log records to the database... InnoDB: Progress in percents: 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 ... 99 InnoDB: Apply batch completed InnoDB: Last MySQL binlog file position 0 12051, file name ./binary-log. 000003 InnoDB: Starting in background the rollback of uncommitted transactions ... ✔
  • 73. MySQL Idiosyncrasies That BITE - 2010.10 MyISAM Repair needed Example 100126 22:44:35 [ERROR] /var/lib/mysql5/bin/mysqld: Table './XXX/ descriptions' is marked as crashed and should be repaired 100126 22:44:35 [Warning] Checking table: './XXX/descriptions' 100126 22:44:35 [ERROR] /var/lib/mysql5/bin/mysqld: Table './XXX/taggings' is marked as crashed and should be repaired 100126 22:44:35 [Warning] Checking table: './XXX/taggings' 100126 22:44:35 [ERROR] /var/lib/mysql5/bin/mysqld: Table './XXX/vehicle' is marked as crashed and should be repaired ✘
  • 74. MySQL Idiosyncrasies That BITE - 2010.10 6. Data Security
  • 75. MySQL Idiosyncrasies That BITE - 2010.10 User Privileges - Practices CREATE USER goodguy@localhost IDENTIFIED BY 'sakila'; GRANT CREATE,SELECT,INSERT,UPDATE,DELETE ON odtug.* TO goodguy@localhost; CREATE USER superman@'%'; GRANT ALL ON *.* TO superman@'%'; Best Practice Normal Practice http://dev.mysql.com/doc/refman/5.1/en/create-user.html http://dev.mysql.com/doc/refman/5.1/en/grant.html ✔ ✘
  • 76. MySQL Idiosyncrasies That BITE - 2010.10 User Privileges - Normal Bad Practice GRANT ALL ON *.* TO user@’%’ *.* gives you access to all tables in all schemas @’%’ give you access from any external location ALL gives you ALTER,ALTER ROUTINE, CREATE, CREATE ROUTINE, CREATE TEMPORARY TABLES, CREATE USER, CREATEVIEW, DELETE, DROP, EVENT, EXECUTE, FILE, INDEX, INSERT, LOCK TABLES, PROCESS, REFERENCES, RELOAD, REPLICATION CLIENT, REPLICATION SLAVE, SELECT, SHOW DATABASES, SHOWVIEW, SHUTDOWN, SUPER,TRIGGER, UPDATE, USAGE
  • 77. MySQL Idiosyncrasies That BITE - 2010.10 User Privileges - Why SUPER is bad SUPER Bypasses read_only Bypasses init_connect Can Disable binary logging Change configuration dynamically No reserved connection
  • 78. MySQL Idiosyncrasies That BITE - 2010.10 SUPER and Read Only $ mysql -ugoodguy -psakila odtug mysql> insert into test1(id) values(1); ERROR 1290 (HY000): The MySQL server is running with the --read-only option so it cannot execute this statement ✔ $ mysql -usuperman odtug mysql> insert into test1(id) values(1); Query OK, 1 row affected (0.01 sec) ✘
  • 79. MySQL Idiosyncrasies That BITE - 2010.10 SUPER and Read Only $ mysql -ugoodguy -psakila odtug mysql> insert into test1(id) values(1); ERROR 1290 (HY000): The MySQL server is running with the --read-only option so it cannot execute this statement ✔ $ mysql -usuperman odtug mysql> insert into test1(id) values(1); Query OK, 1 row affected (0.01 sec) ✘ Data inconsistency now exists
  • 80. MySQL Idiosyncrasies That BITE - 2010.10 SUPER and Init Connect #my.cnf [client] init_connect=SET NAMES utf8 This specifies to use UTF8 for communication with client and data Common configuration practice to support UTF8
  • 81. MySQL Idiosyncrasies That BITE - 2010.10 SUPER and Init Connect (2)
  • 82. MySQL Idiosyncrasies That BITE - 2010.10 SUPER and Init Connect (2) $ mysql -ugoodguy -psakila odtug mysql> SHOW SESSION VARIABLES LIKE 'ch%'; +--------------------------+----------+ | Variable_name | Value | +--------------------------+----------+ | character_set_client | utf8 | | character_set_connection | utf8 | | character_set_database | latin1 | | character_set_filesystem | binary | | character_set_results | utf8 | | character_set_server | latin1 | | character_set_system | utf8 | +--------------------------+----------+ ✔
  • 83. MySQL Idiosyncrasies That BITE - 2010.10 SUPER and Init Connect (2) $ mysql -usuperman odtug mysql> SHOW SESSION VARIABLES LIKE 'character%'; +--------------------------+----------+ | Variable_name | Value | +--------------------------+----------+ | character_set_client | latin1 | | character_set_connection | latin1 | | character_set_database | latin1 | | character_set_filesystem | binary | | character_set_results | latin1 | | character_set_server | latin1 | | character_set_system | utf8 | +--------------------------+----------+ $ mysql -ugoodguy -psakila odtug mysql> SHOW SESSION VARIABLES LIKE 'ch%'; +--------------------------+----------+ | Variable_name | Value | +--------------------------+----------+ | character_set_client | utf8 | | character_set_connection | utf8 | | character_set_database | latin1 | | character_set_filesystem | binary | | character_set_results | utf8 | | character_set_server | latin1 | | character_set_system | utf8 | +--------------------------+----------+ ✔ ✘
  • 84. MySQL Idiosyncrasies That BITE - 2010.10 SUPER and Init Connect (2) $ mysql -usuperman odtug mysql> SHOW SESSION VARIABLES LIKE 'character%'; +--------------------------+----------+ | Variable_name | Value | +--------------------------+----------+ | character_set_client | latin1 | | character_set_connection | latin1 | | character_set_database | latin1 | | character_set_filesystem | binary | | character_set_results | latin1 | | character_set_server | latin1 | | character_set_system | utf8 | +--------------------------+----------+ $ mysql -ugoodguy -psakila odtug mysql> SHOW SESSION VARIABLES LIKE 'ch%'; +--------------------------+----------+ | Variable_name | Value | +--------------------------+----------+ | character_set_client | utf8 | | character_set_connection | utf8 | | character_set_database | latin1 | | character_set_filesystem | binary | | character_set_results | utf8 | | character_set_server | latin1 | | character_set_system | utf8 | +--------------------------+----------+ ✔ ✘ Data integrity can be compromised
  • 85. MySQL Idiosyncrasies That BITE - 2010.10 SUPER and Binary Log mysql> SHOW MASTER STATUS; +-------------------+----------+--------------+------------------+ | binary-log.000017 | 4488 | | | +-------------------+----------+--------------+------------------+ mysql> DELETE FROM sales WHERE id=23; mysql> SET SQL_LOG_BIN=0; mysql> DELETE FROM sales WHERE id=80; mysql> SET SQL_LOG_BIN=1; mysql> DELETE FROM sales WHERE id=99; mysql> SHOW MASTER STATUS; +-------------------+----------+--------------+------------------+ | File | Position | Binlog_Do_DB | Binlog_Ignore_DB | +-------------------+----------+--------------+------------------+ | binary-log.000017 | 4580 | | | +-------------------+----------+--------------+------------------+ 1 row in set (0.00 sec)
  • 86. MySQL Idiosyncrasies That BITE - 2010.10 SUPER and Binary Log (2) # at 4488 #101025 12:57:24 server id 1 end_log_pos 4580 Query thread_id=1 exec_time=0 error_code=0 SET @@session.lc_time_names=0/*!*/; SET @@session.collation_database=DEFAULT/*!*/; DELETE FROM sales WHERE id=23 /*!*/; # at 4580 #101025 13:01:26 server id 1 end_log_pos 4672 Query thread_id=1 exec_time=0 error_code=0 SET TIMESTAMP=1288018886/*!*/; DELETE FROM sales WHERE id=99 /*!*/; DELIMITER ; ✘ Data auditability is now compromised
  • 87. MySQL Idiosyncrasies That BITE - 2010.10 SUPER and reserved connection $ mysql -uroot mysql> show global variables like 'max_connections'; +-----------------+-------+ | Variable_name | Value | +-----------------+-------+ | max_connections | 3 | +-----------------+-------+ 1 row in set (0.07 sec) mysql> show global status like 'threads_connected'; +-------------------+-------+ | Variable_name | Value | +-------------------+-------+ | Threads_connected | 4 | +-------------------+-------+ ✔ When connected correctly, 1 connection is reserved for SUPER
  • 88. MySQL Idiosyncrasies That BITE - 2010.10 SUPER and reserved connection - Unexpected $ mysql -uroot ERROR 1040 (HY000): Too many connections mysql> SHOW PROCESSLIST; +----+------+-----------+-------+---------+------+------------+--------------- | Id | User | Host | db | Command | Time | State | Info +----+------+-----------+-------+---------+------+------------+--------------- | 13 | root | localhost | odtug | Query | 144 | User sleep | UPDATE test1 ... | 14 | root | localhost | odtug | Query | 116 | Locked | select * from test1 | 15 | root | localhost | odtug | Query | 89 | Locked | select * from test1 ✘ When application users all use SUPER, administrator can't diagnose problem
  • 89. MySQL Idiosyncrasies That BITE - 2010.10 7. ANSI SQL
  • 90. MySQL Idiosyncrasies That BITE - 2010.10 Group By Example SELECT country, COUNT(*) AS color_count FROM flags GROUP BY country; +-----------+-------------+ | country | color_count | +-----------+-------------+ | Australia | 3 | | Canada | 2 | | Japan | 2 | | Sweden | 2 | | USA | 3 | +-----------+-------------+ SELECT country, COUNT(*) FROM flags; +-----------+----------+ | country | COUNT(*) | +-----------+----------+ | Australia | 12 | +-----------+----------+ ✔ ✘
  • 91. MySQL Idiosyncrasies That BITE - 2010.10 Group By Example (2) SET SESSION sql_mode=ONLY_FULL_GROUP_BY; SELECT country, COUNT(*) FROM flags; ERROR 1140 (42000): Mixing of GROUP columns (MIN(),MAX(),COUNT(),...) with no GROUP columns is illegal if there is no GROUP BY clause http://ExpertPHPandMySQL.com Chapter 1 - Pg 31 ✔
  • 92. MySQL Idiosyncrasies That BITE - 2010.10 Using SQL_MODE for ANSI SQL SQL_MODE = STRICT_ALL_TABLES, NO_ZERO_DATE, NO_ZERO_IN_DATE, NO_ENGINE_SUBSTITUTION, ONLY_FULL_GROUP_BY; Recommended Configuration
  • 93. MySQL Idiosyncrasies That BITE - 2010.10 8. Case Sensitivity
  • 94. MySQL Idiosyncrasies That BITE - 2010.10 Case Sensitivity String Comparison SELECT 'OTN' = UPPER('otn'); +----------------------+ | 'OTN' = UPPER('otn') | +----------------------+ | 1 | +----------------------+ SELECT 'OTN' = 'OTN' AS same, 'OTN' = 'Otn' as initcap, 'OTN' = 'otn' as lowercase, 'OTN' = 'otn' COLLATE latin1_general_cs AS different; +------+---------+-----------+-----------+ | same | initcap | lowercase | different | +------+---------+-----------+-----------+ | 1 | 1 | 1 | 0 | +------+---------+-----------+-----------+ SELECT name, address, email FROM customer WHERE name = UPPER('bradford') ✘This practice is unnecessary as does not utilize index if exists
  • 95. MySQL Idiosyncrasies That BITE - 2010.10 Case Sensitivity Tables # Server 1 mysql> CREATE TABLE test1(id INT UNSIGNED NOT NULL); mysql> INSERT INTO test1 VALUES(1); mysql> INSERT INTO TEST1 VALUES(2); # Server 2 mysql> CREATE TABLE test1(id INT UNSIGNED NOT NULL); mysql> INSERT INTO test1 VALUES(1); mysql> INSERT INTO TEST1 VALUES(2); ERROR 1146 (42S02): Table 'test.TEST1' doesn't exist
  • 96. MySQL Idiosyncrasies That BITE - 2010.10 Case Sensitivity Tables (2) - Operating Specific Settings # Server 1 - Mac OS X / Windows Default mysql> SHOW GLOBAL VARIABLES LIKE 'lower%'; +------------------------+-------+ | Variable_name | Value | +------------------------+-------+ | lower_case_file_system | ON | | lower_case_table_names | 2 | +------------------------+-------+ # Server 2 - Linux Default mysql> SHOW GLOBAL VARIABLES LIKE 'lower%'; +------------------------+-------+ | Variable_name | Value | +------------------------+-------+ | lower_case_file_system | OFF | | lower_case_table_names | 0 | +------------------------+-------+ Be careful.This default varies depending on Operating System
  • 97. MySQL Idiosyncrasies That BITE - 2010.10 Other Gotchas
  • 98. MySQL Idiosyncrasies That BITE - 2010.10 Other features the BITE Character Sets Data/Client/Application/Web Sub Queries Rewrite as JOIN when possible Views No always efficient Cascading Configuration Files SQL_MODE's not to use
  • 99. MySQL Idiosyncrasies That BITE - 2010.10 Conclusion
  • 100. MySQL Idiosyncrasies That BITE - 2010.10 DON'T ASSUME
  • 101. MySQL Idiosyncrasies That BITE - 2010.10 Conclusion - SQL_MODE SQL_MODE = ALLOW_INVALID_DATES,ANSI_QUOTES, ERROR_FOR_DIVISION_ZERO, HIGH_NOT_PRECEDENCE,IGNORE_SPACE,NO_AUTO_CREATE_USER, NO_AUTO_VALUE_ON_ZERO,NO_BACKSLASH_ESCAPES, NO_DIR_IN_CREATE,NO_ENGINE_SUBSTITUTION, NO_FIELD_OPTIONS,NO_KEY_OPTIONS,NO_TABLE_OPTIONS, NO_UNSIGNED_SUBTRACTION,NO_ZERO_DATE, NO_ZERO_IN_DATE,ONLY_FULL_GROUP_BY (5.1.11), PAD_CHAR_TO_FULL_LENGTH (5.1.20), PIPES_AS_CONCAT, REAL_AS_FLOAT,STRICT_ALL_TABLES, STRICT_TRANS_TABLES ANSI, DB2, MAXDB, MSSQL, MYSQL323, MYSQL40, ORACLE, POSTGRESQL,TRADITIONAL http://dev.mysql.com/doc/refman/5.1/en/server-sql-mode.html ✔
  • 102. MySQL Idiosyncrasies That BITE - 2010.10 Conclusion - SQL_MODE SQL_MODE = ALLOW_INVALID_DATES,ANSI_QUOTES, ERROR_FOR_DIVISION_ZERO, HIGH_NOT_PRECEDENCE,IGNORE_SPACE,NO_AUTO_CREATE_USER, NO_AUTO_VALUE_ON_ZERO,NO_BACKSLASH_ESCAPES, NO_DIR_IN_CREATE,NO_ENGINE_SUBSTITUTION, NO_FIELD_OPTIONS,NO_KEY_OPTIONS,NO_TABLE_OPTIONS, NO_UNSIGNED_SUBTRACTION,NO_ZERO_DATE, NO_ZERO_IN_DATE,ONLY_FULL_GROUP_BY (5.1.11), PAD_CHAR_TO_FULL_LENGTH (5.1.20), PIPES_AS_CONCAT, REAL_AS_FLOAT,STRICT_ALL_TABLES, STRICT_TRANS_TABLES ANSI, DB2, MAXDB, MSSQL, MYSQL323, MYSQL40, ORACLE, POSTGRESQL,TRADITIONAL http://dev.mysql.com/doc/refman/5.1/en/server-sql-mode.html ✔ ✘ ?
  • 103. MySQL Idiosyncrasies That BITE - 2010.10 RonaldBradford.com MySQL4OracleDBA.com