(Shlomi Noach) I’m proud to announce mycheckpoint, a monitoring utility for MySQL, with strong emphasis on user accessibility to monitored data.
Tag: Open Source
Asynchronous Queries verses Synchronous Queries
(Dathan Vance Pattishall) In a procedural language without the use of threads (or Inter Process Communication via forks), to execute I/O requests they are done one after another. Synchronous Queries produce at best a Big-O of N such that N is an element of I/O communication (queries) and N equals th
Broken Index from InnoDB Hot Backup
(Chris) A very interesting problem came up a while back when testing a rebuild and failover procedure. I had just run a rebuild of a slave server with InnoDB Hot Backup from the master. After the failover, one query on three tables in three different databases was not performing as it should. This w
Fixing Poor MySQL Default Configuration Values
(Jeremy Zawodny) I’ve recently been accumulating some MySQL configuration variables that have defaults which have proven to be problematic in a high-volume production environment. The thing they all have in common is a network blip or two can trigger some very undesirable behavior.
TechTip: MySQL and PHP Are a Perfect Match, Part II
(Jan Jorgensen) If you’ve read my last two tips, you should by now have installed an Apache Server running PHP and a MySQL Database Server locally on your PC. Even if you haven’t, you can benefit from this tip because if you have the installment on a “remote” Web server, the scripts provided here wi
Working with XML Data in MySQL
(Rob Gravelle) XML was created to facilitate the transportation of data between systems and businesses in a language nonspecific way. When first introduced, a script or application process had to parse the XML data and convert it into valid format for the database and underlying system. Later, datab
Instant Relief from MySQL Reporting Queries: Incremental Updates
(Nicholas Goodman) Yesterday, I covered how you can do an initial “replication” of data from MySQL to DynamoDB and how this can improve performance, and save storage space. The follow on question becomes: That’s Great Nick. But how do I do keep my data up to date?
SQL multi line chart
(Shlomi Noach) Time for another charting SQL query. I wish to present a single-query generated multi-line/area chart. I’ll walk through some of the steps towards making this happen. By the end of this post I’ll present some real-data charts, area charts and colored charts.
Instant Relief from Slow MySQL Reporting Queries using DynamoDB
(Nicholas Goodman) Here’s the scenario. You’ve got a table in MySQL for reporting that has a few million rows, and is denormalized for reporting. You’ve got a Pentaho Report that is querying this MySQL table. You have two problems with the current report. –Your users are complaining that the que
Data type confusion: what is an int(11)?
(Sarah Sproehnle) Over and over I see customers that don’t understand what int(11) really means. Their confusion is understandable. Many know what defining a char(10) means (a fixed-sized character string that allows up to 10 characters). However, ints are different.
