June 19, 2013

Comment: How fast can you sort data with MySQL ?

… the case when buffer allocation was a bottleneck – with dependent subselect with order by – but in that case this was to…

Post: MySQL VIEW as performance troublemaker

… write the queries, some of them it turn used subqueries subselects and derived tables. It is also very dangerous if you…

Post: MySQL and PostgreSQL SpecJAppServer benchmark results

… slower at connection creation and MySQL is very fast, while SubSelect optimization is very bad in MySQL for many cases until…

Post: Top 5 Wishes for MySQL

… prepared not to mention other issues. I’m saying about SubSelects which were added in MySQL 4.1 but you still…

Comment: MySQL - to use or not to use

… reporting queries is needed as MySQL often fails to optimize subselects properly only able to use nested loops join method this…

Comment: Using delayed JOIN to optimize count(*) and LIMIT queries

… out – in some cases you would benefit from using 2 subselects in FROM clause and joining them together. The problem is…

Comment: Using delayed JOIN to optimize count(*) and LIMIT queries

… this more, to only return one one column on the subselect and leftjoin the same table back in I found gave…

Comment: Using delayed JOIN to optimize count(*) and LIMIT queries

… a temp table then join against that. This was before subselects… Even worse is that joins with blobs that are never…

Post: Feature Idea: Finding columns which query needs to access

… sum it up, not to mention more complex questions of subselects. It would be great tool for MySQL Performance Optimization if…

Comment: Derived Tables and Views Performance

… would explain the speed difference). Probably the execution of the subselect is faster/less of a memory hog than creating the…