Now that the move to Google Code is nearly 2 years ago, all
SourceForge related stuff for HeidiSQL was removed today. That
includes three mailing lists on which you probably were
subscribed:
* heidisql-devel
* heidisql-issues
* heidisql-commits
The first one was only used internally. The second and third one
can be easily replaced by the update RSS feed at Google Code.
Hoping everyone is alright with this removal. This step should
also help to decrease the large amount of emails we get every
day.
A key differentiator in Drizzle from it’s original MySQL roots is user based authentication. Gone is the host/user and schema/table/column model that was stored in the MyISAM based mysql.user table.
Authentication is now completely pluggable, leveraging existing systems such as PAM, LDAP via PAM and Http authentication.
In this post I’ll talk about HTTP authentication which requires an external http server to implement successfully. You can look at Part 1 for …
[Read more]A key differentiator in Drizzle from it’s original MySQL roots is user based authentication. Gone is the host/user and schema/table/column model that was stored in the MyISAM based mysql.user table.
Authentication is now completely pluggable, leveraging existing systems such as PAM, LDAP via PAM and Http authentication.
In this post I’ll talk about PAM authentication which is effectively your current Linux based user security.
This information is based on the current …
[Read more]I've been working in a fully distributed work environment for almost 8 years now (I joined MySQL AB in April, 2002). Therefore I've been reading Toni Schneider's blog post about the "5 reasons why your company should be distributed" with great interest – he raised several points that I fully agree with and which I covered in my talks about "Working for a virtual company - how we do it at MySQL" at last year's next09 conference (slides, video) and at …
[Read more]Updating the MPL. Funding for Lucid and eXo. StatusNet. And more.
Follow 451 CAOS Links live @caostheory on Twitter and
Identi.ca
“Tracking the open source news wires, so you don’t have
to.”
Updating the MPL
# ZDnet reported that the 10-year-old Mozilla Public
License will be updated by the end of 2010, while Mitchell Baker
explained the
process.
Funding for Lucid and eXo
# Lucid Imagination raised $10m in series B funding from Shasta
Ventures, Granite Ventures and Walden International.
# eXo Platform raised $6m from Auriga …
[Read more]This is the 182nd edition of Log Buffer, the weekly review of database blogs. Make sure to read the whole edition so you do not miss where to submit your SQL limerick!
This week started out with me posting about International Women’s Day, and has me personally attending Confoo (Montreal) which is an excellent conference I hope to return to next year. I learned a lot from confoo, especially the blending nosql and sql session I attended.
This week was also the Hotsos Symposium. …
[Read more]This week with a client I saw ext4 used for the first time on a production MySQL system which was running Ubuntu 9.10 (Karmic Koala). I observe today while installing 9.10 Server locally that ext4 is the default option. The ext4 filesystem is described as better performance, reliability and features while there is also information about improvements in journaling.
At OSCON 2009 I attended a presentation on Linux Filesystem Performance for Databases by Selena Deckelmann in which ext4 was included. While providing some improvements in sequential reading and writing, there were issue with random I/O which is the key for RDBMS products.
Is the RAID configuration (e.g. RAID 5, RAID 10), strip size, buffer caches, LVM …
[Read more]
Yesterday we were having a conversation on IRC about the need for
more useful information about the internals of the
database.
"SHOW STATUS" is just too primitive in its design to provide the
sort of detailed information you need to do operations. Yesterday
we got a bug request over the number of "open tables" found after
a particular query. The user had assumed the number was off, but
what they hadn't realized was that the number was accurate (in
this particular case, MySQL fudges a number on open tables
because it can't handle count its derived tables).
One of the patches coming into the tree right now fully exposes
the contents of the table cache and table definition cache to the
user. You can see who holds what locks on what tables, and you
can see the actual count on table access per table.
drizzle> select * from TABLE_DEFINITION_CACHE; …[Read more]
A boat tour of several temples in Bangkok, followed by a dinner with traditional Thai dancing.
First here are some videos from the day:
[Read more]Or…What the Heck is Wrong with CREATE TABLE IF NOT EXISTS ... SELECT?
So, earlier this week, I blogged about an SQL puzzle that had come up in my current work on Drizzle’s new transaction log.
I posed the question to readers what the “correct” result of the following would be:
CREATE TABLE t1 (a int, b int); INSERT INTO t1 VALUES (1,1),(1,2); CREATE TEMPORARY TABLE t2 (a int, b int, primary key (a)); BEGIN; INSERT INTO t2 VALUES (100,100); CREATE TEMPORARY TABLE IF NOT EXISTS t2 (PRIMARY KEY (a)) SELECT * FROM t1; # The above statement will correctly produce an ERROR 23000: Duplicate entry '1' for key 'PRIMARY' # What should the below result be? SELECT * FROM t2; COMMIT;
A number of readers responded, and, to be fair, most everyone was “correct” in their own way. Why? Well, because the way that MySQL deals with calls to CREATE TABLE ... …
[Read more]