Tagged with "innodb"
Fun MySQL fact of the day:
Since we're on the topic of transaction isolation, you might have previously had a mental model that transaction isolation levels are a layered model, each one stronger than the next. Unfortunately, this isn't quite true; and if that's not annoying enough, you might even be surprised to learn that ... read moreFun MySQL fact of the day: InnoDB read-only optimisation
TheI
in ACID stands for Isolation, which is a property that determines whether or not a transaction can see the progress of other transactions. Transaction isolation is a complex system generally defined by the allowance of certain "read phenomena". ... read more
Fun MySQL fact of the day: chaos without ORDER BY
ANSI SQL-92 states that the order of a result set in the absence of an ORDER BY
is implementation specific. This means that the same query without an ORDER BY
clause run n
times may return rows in n
different orders. ... read more