Hi Keith 🙂
Thank you for the great write up. I am setting up a demo on raspberry pi 2, and the DemoKit you showed looks like fun. Please feel free to email me, if it is OK for me get a copy of DemoKit as well.
Hi Keith 🙂
Thank you for the great write up. I am setting up a demo on raspberry pi 2, and the DemoKit you showed looks like fun. Please feel free to email me, if it is OK for me get a copy of DemoKit as well.
MySQL 5.5.45 was recently released (it is the latest MySQL 5.5, is GA), and is available for download here:
http://dev.mysql.com/downloads/mysql/5.5.html
This release, similar to the last 5.5 release, is mostly uneventful.
There were 0 “Functionality Added or Changed” items this time, 1 “Security Fix”, and just 9 bugs overall fixed.
Out of the 9 bugs, there were 3 InnoDB bugs, 1 security-related bug, and 1 potential crashing bug. Here are the ones worth noting:
Introduction
A foreign key is a field (or collection of fields) in one table
that uniquely identifies a row of another table. The table
containing the foreign key is called the child table, and the
table containing the candidate key is called the referenced or
parent table. The purpose of the foreign key is to identify a
particular row of the referenced table. Therefore, it is required
that the foreign key is equal to the candidate key in some row of
the primary table, or else have no value (the NULL
value). This is called a referential integrity constraint between
the two tables. Because violations of these constraints can be
the source of many database problems, most database management
systems provide mechanisms to ensure that every non-null foreign
key corresponds to a row of the referenced table. Consider
following simple example:
create table parent ( id int not null primary key, name char(80) ) …[Read more]
Sun of database technologies is shining through the cloud technology. Oracle, SQL Server, MySQL and various other databases are bringing forth some nifty offerings and this Log Buffer Edition covers some of them.
Oracle:
Today I released version 1.1 of myoradump for download
from sourceforge. If you don't know what myoradump is,
this is a utility for exporting data from an Oracle database in
some relevant text format so that it can be imported to some
other database.
The main thing in version 1.1 is that I have added a whole bunch
of new output formats, so make it even easier to get your data
out of expensive Oracle and into something more effective. The
new formats supported are:
During the last couple of months I have been involved in an unusually high amount of performance audits for e-commerce applications running with Magento. And although the systems were quite different, they also had one thing in common: the MySQL query cache was very useful. That was counter-intuitive for me as I’ve always expected the query cache to be such a bottleneck that response time is better when the query cache is turned off no matter what. That lead me to run a few experiments to better understand when the query cache can be helpful.
Some context
The query cache is well known for its contentions: a global mutex has to be acquired for any read or write operation, which means that any access is serialized. This was not an issue 15 years ago, but with today’s multi-core servers, such serialization is the best way to kill performance.
However from a performance …
[Read more]VividCortex is sponsoring and exhibiting at PGConf Silicon Valley November 17 - 18th. Stop by our booth to get a free product demo and see how we can revolutionize your database monitoring.
Baron Schwartz will also be speaking on Analyzing PostgreSQL Network Traffic with vc-pgsql-sniffer, so be sure to learn from his experience.
Click here for more details and registration.
VividCortex is sponsoring and exhibiting at PGConf Silicon Valley November 17 - 18th. Stop by our booth to get a free product demo and see how we can revolutionize your database monitoring.
Baron Schwartz will also be speaking on Analyzing PostgreSQL Network Traffic with vc-pgsql-sniffer, so be sure to learn from his experience.
Click here for more details and registration.
If you run multiple MySQL instances on a Linux machine, chances are good that at one time or another, you’ve ended up connected to an instance other than what you had intended. It’s certainly happened to me, and I submitted Bug#76512 to deal with the cause which affects me most commonly – that the mysql client will silently ignore the –port option and connect using the default Unix socket instead when the host is “localhost” (default). We’ve recently discussed ways we can make this behavior less surprising to users, and though we’re now past the second RC of MySQL Server 5.7, we’re contemplating making these changes in future 5.7 releases. Please let us know your thoughts!
Here are the basic principles of what we intend to change:
Explicit –protocol option rules all
If a user provides an explicit …
[Read more]Hi all, it is time again to do another preview release of MySQL Group Replication, the plugin that brings multi-master update everywhere to MySQL, like we described in Hello World post.
We are very proud to do the third preview release of MySQL Group Replication, which introduces new exciting features, please enjoy the highlights!…