June 19, 2013

Post: Flexviews - part 3 - improving query performance using materialized views

functions supported, except GROUP_CONCAT and AVG(distinct). **non-deterministic functionsCOUNT(*). mysql> select count(*) cnt from order_lines\G *************************** 1. row *************************** cnt: 155187034 1 row in set (32.03 sec) mysql> select sum(total

Post: Using any general purpose computer as a special purpose SIMD computer

function, and treat any size cluster of Turing computers as a specialized purpose SIMD computer with respect to your functionMySQL): mysql> select word, md5(word), md5(reverse(word)), count(*) from words2 group

Post: A case for MariaDB's Hash Joins

in the equijoin condition. The hash table is accessed by using a hash functiontotal dataset size is 4.8G. Let me show the breakdown of dataset size by the tables that I have used inin_groupwith its EXPLAIN output as returned by MySQL 5.5 is as follows: SELECT o.*, count

Post: Ultimate MySQL variable and status reference list

MySQLin_groupblogpercona.commanual innodb_log_groupin_memoryblogpercona.commanual logblogpercona.commanual log_binblogpercona.commanual log_binblogpercona.commanual log_bin_indexblogpercona.commanual log_bin_trust_functionin_cacheblogpercona.commanual Qcache_totalwith

Post: MySQL Indexing Best Practices: Webinar Questions Followup

total size or less to almost 100%. When your go from working set what fits in…, COUNT(user_id) AS user_count FROM user_competition_entry GROUP… on a table with 11M rows I’ve seen …in index order MySQL gets data in already sorted order and looks at “one group at the time”, computing aggregate functions