(Baron Schwartz) I haven’t been blogging much about the changes in MySQL for a while. But the MySQL and InnoDB engineers have been doing a ton of work over the last couple years, and now it’s seeing the light of day, so it’s time to offer words of congratulations and appreciation about that.
Tag: Open Source
Getting unique elements
(depesz) Let’s assume you have some simple database with “articles” – each article can be in many “categories”. And now you want to get list of all articles in given set of categories.
Hierarchical query in MySQL: limiting parents
(Quassnoi) Answering questions asked on the site.
Introduction to MySQL 5.5
(John Russell) It’s been a busy year for MySQL. Perhaps you’ve heard. Here are some recent improvements to the speed, scalability, and user-friendliness of the MySQL database and the InnoDB storage engine that we think deserve their own headlines. Now is a great time to beta test the 5.5 release and
Is there a performance difference between JOIN and WHERE?
(Baron Schwartz) I’ve heard this question a lot, but never thought to blog about the answer. “Is there a performance difference between putting the JOIN conditions in the ON clause or the WHERE clause in MySQL?”
Tips n’ Tricks – using ‘wrong’ index
(depesz) More than once I’ve seen situation when there is a table, with serial primary key, and rows contain also some kind of creation timestamp, which is usually monotonic, or close to monotonic.
How to know if you’re updating Slave you should not?
(Peter Zaitsev) When replication runs out of sync first question you often ask is if someone could be writing to the slave. Of course there is read_only setting which is good to set in the slave but it is not set always and also users with SUPER privilege bypass it.
Comparing Numerics in Pentaho Data Integration / Kettle
(John Dzilvelis) While working on a transformation I ran into a problem with comparing two (seemingly) identical numbers using the Filter Rows step. I had a case where a transformation selected two DECIMAL(13,5) values from the database and compared them.
Rebuilding MySQL with same options
(Peter Zaitsev) Every so often I am working on the system with custom compiled MySQL. How to upgrade to the new MySQL Options while preserving as much of original compilation options as possible if original build scripts are not available?
MySQL Exotic Storage Engines
(Sean Hull) MySQL has an interesting architecture that sets it apart from some other enterprise database systems. It allows you to plug in different modules to handle storage. What that means to end users is that it is quite flexible, offering an interesting array of different storage engines with
