Commanding Chaos for Coworking, Open Source and Creative Communities

mysql

How to find duplicate records in a table on database - SQL tips

Fri, 07/18/2014 - 06:50 -- rprice

In this section we will see SQL query which can be used to locate duplicate records in table. As explained in previous section, definition of duplicate depends upon business rules which must be used in group by clause. In following query we have used SELECT query to select all records from Contacts table.

mysql

MySQL co-founder David Axmark gives a warning to the Drupal community | Darren Mothersele

Wed, 03/13/2013 - 09:16 -- rprice

Videos of the sessions from Drupal Camp London have started to appear on YouTube including some vox-pops style interviews from attendees. In this short interview [YouTube], MySQL co founder David Axmark gives a warning to the Drupal community. David makes a couple of observations about Drupal, drawing parallels between it and MySQL.

London
opensource
drupaleasypodcast
Video
mysql

How FriendFeed uses MySQL to store schema-less data - Bret Taylor's blog

Thu, 09/06/2012 - 06:16 -- rprice

However, as we grew, scaling our existing features to accomodate more traffic turned out to be much less of an issue than adding new features.

In particular, making schema changes or adding indexes to a database with more than 10 - 20 million rows completely locks the database for hours at a time. Removing old indexes takes just as much time, and not removing them hurts performance because the database will continue to read and write to those unused blocks on every INSERT, pushing important blocks out of memory.

development
schemaless
FriendFeed
sharding
nosql
scalability
database
mysql

Improved InnoDB fast index creation - MySQL Performance Blog

Thu, 12/29/2011 - 07:18 -- rprice

By temporarily dropping secondary indexes from the new table before copying the data, and then recreating them later, ALTER TABLE can take advantage of the fast index creation feature even when it has to copy the entire table.

mysql
performance
database

MySQL Engines: MyISAM vs. InnoDB | Tag1 Consulting

Wed, 12/28/2011 - 10:37 -- rprice

In most cases, InnoDB is the correct choice for a Drupal site. It provides increased concurrency, enhanced performance and much more data integrity than MyISAM ever can. However, the pluggable nature of MySQL engines allows the user to "mix and match" table engines inside a single database. This allows us to consider tables whose workloads fit MyISAM more so than InnoDB. The main candidates for MyISAM in a mostly InnoDB-centric database are the search tables.

database
scalability
drupaleasypodcast
performance
storage
mysql
Subscribe to RSS - mysql