The fast paced open source ecosystem

This morning at <a href=““http://en.oreilly.com/oscon2008/">OSCON 08, Tim O’Reilly’s opening keynote Open Source on the O’Reilly Radar included a slide on Drizzle, giving this new project maximum exposure to the Open Source community.

Drizzle was only officially announced yesterday in Drizzle, Clouds, “What If?” by primary architect Brian Aker. Things move fast. There has been a number of comments from people yesterday including Mark Attwood , Monty Widenus ,Monty Taylor ,Ronald Bradford , Arjen Lentz , Lewis Cunningham , Jeremy Cole , <a href=“http://pbxt.blogspot.com/2008/07/drizzle-goes-back-to-roots.html>Paul McCullagh,451 Group ,Matt Asay , Assaf Arkin , SlashDot , Builder.au and MySQL HA .

The Drizzle Launchpad project has reached 5th on a Google Search .

Unfortunately, not all uptake and feedback was positive. The official Wikipedia page for Drizzle was marked for speedy deletion almost instantly, and within a few hours permanently deleted.

Tagged with: Databases Drizzle General MySQL OSCON 2008

Producing Alternative Means statistics with SQL

MySQL’s built-in AVG() computes the arithmetic mean — the sum divided by the count. That is the right default for many questions, but it is not always the right measure of central tendency.

Extending MySQL Capabilities with UDFs, Plugins and Components

MySQL offers three different approaches to extending the SQL capabilities with the default product you download and install. These are: User Defined Function (UDF) MySQL Manual MySQL Plugin MySQL Manual MySQL Component MySQL Manual For the purposes of this post I will be using the current LTS version MySQL 8.

Producing One-Sample Z-Test statistics with SQL

The one-sample Z-test determines whether a sample mean differs significantly from a known population mean when the population standard deviation is also known. It is the appropriate test when the population parameters are established — quality control benchmarks, national averages, long-run process measurements — and you want to evaluate whether a new sample is consistent with them.