… that sometimes these perform worse and sometimes better than another equivalent solution. If you’re talking about using a temporary table to store…’s a benefit to performance is a case-by-case decision. There are other drawbacks to using temporary tables in this way, for example when using replication, a temporary table could vanish if the slave restarts…
Comment: Replication in MySQL 5.6: GTIDs benefits and limitations - Part 1
…regular MySQL replication to using replication using GTIDs 1. Temporary tables – CREATE and DROP TEMPORARY tables are not supported inside transaction. 2. Updates …consistent on master/slave db. 3. CREATE TABLE …. SELECT – It is not supported to perform such type of statements http://mysqlopt….
Post: Percona Server for MySQL 5.5.31-30.3 now available
…-2012-5627 vulnerability, where an unprivileged MySQL account owner could perform brute-force password guessing attack on other accounts efficiently. This… from the MySQL 5.6 version, which removed MyISAM internal temporary table mutex contention. Bug fixed #1179978. Release notes for Percona Server…
Post: Webinar: MySQL 5.6 Performance Schema
… can use the wealth of information Performance Schema gathers to understand some of the typical performance bottlenecks. Other areas of focus include: Bottlenecks with Disk IO Problems with excessive temporary tables and external sorts…
Post: Percona XtraDB Cluster 5.5.30-23.7.4 for MySQL now available
… repositories. Benchmark showing the impact of memory allocators on MySQL performance can be found in this blogpost. This release of Percona… when DROP TEMPORARY TABLE statement was used, but it will still replicate in case DROP TABLE statement is used on a temporary table. Bug fixed…
Post: How much overhead is caused by on disk temporary tables
… MyISAM temporary tables performance to avoid OS writes OS Write cache is not as efficient as I would hope, at least on Linux Performance of Disk MyISAM tables may not scale proportionally with table size, even when all data fits in memory MEMORY temporary tables can…
Post: MySQL VIEW as performance troublemaker
… is simply expanded as a macro or Temporary Table in which case VIEW is materialized to temporary tables (without indexes !) which is later used… application, especially ones which require temporary table execution method. VIEWs can be used with very small performance overhead but only in case they…
Post: Using GROUP BY WITH ROLLUP for Reporting Performance Optimization
… side (you can store result in temporary table and run sum() and sort query on that table instead if amount of groups is… well implemented inside MySQL. Why am I looking on reporting performance optimization ? It is for ClickAider project which is growing rapidly… – it is using filesort as group by execution method, not temporary table as ordinary GROUP BY: mysql> explain select grp, count(*) cnt…
Post: Derived Tables and Views Performance
… each other but how do they compare in terms of performance ? Derived Tables in MySQL 5.0 seems to have different implementation… in terms of query optimization. Derived Tables are still handled by materializing them in the temporary table, furthermore temporary table with no indexes (so you…
Post: On Character Sets and Disappearing Tables
… the best performance possible, so we’re going to convert everything to ASCII. Or perhaps we have some other tables with ASCII…, you can’t recreate the “dos2″ table, and you can’t turn the orphaned temporary table back into its former self unless you… this database to get the actual filename of the temporary table rather than the temporary table name that was displayed in the error message…

