MySQL AB today announced that Quantel, a UK-based company behind one of the world's most popular server-based newsroom systems, has selected the MySQL database server as a critical component in its ?Enterprise sQ? product line.
I promised to write little articles about all storage engines which sessions I attended during MySQL Users Conference but I did not get too far yet, too busy. So today it is time for PBXT.
I was very interested about session about PBXT because this is storage engine does not target the same general purpose transactional storage engine market a lot of other people targeting. It also has number of unusual design decisions which will position it further away.
Paul was for a while comparing PBXT to MyISAM with multi versioning and transactions and this is valid comparison for good and for bad. At its current state (as of the conference) PBXT does not offer Durable transactions (meaning you can lose committed transactions if power goes down) furthermore in case of crash database may become corrupted, just as with MyISAM, and you might need to repair tables. This is of course something which is scheduled to be fixed before stable release …
[Read more]
One thing that Statcounter provides me is how often certain
keywords are found in my blog. Some of the more popular
are:
- ORA-27054: I assume this is by people trying to backup using RMAN over NFS. I hope they found my problem and most importantly, my solution.
- Some combination of DB Links and ORA-01017: I'm sure people found my distributed issues with 9i and 10g working together. But that's not always the issue. If you are using what I call "unauthenticated" database links (no password in the definition) then the user authentication on both the source and …
While going thru the process of putting the presentation for my China trip (and describing it to a friend part way through the process), it occurred to me that I have a specific method that I seem to follow each time.
Before I describe it, I should point out that there are really two types of presentations I've had to create over the last few years: new and derived.
As I thought about this, it occurred to me that I seem to find myself presenting over and over on subjects in the same specific topic area for roughly 9 to 24 months before I move on to something newer and different. Those phases, unsurprisingly, coincide with my role at work at the time.
Past phases were roughly:
- MySQL, Perl, and Open Source in general …
New OpenSolaris Project: Web Stack
We just launched a new OpenSolaris project called Web Stack. With the great response we have seen for Cool Stack, we thought this would be a good time to get the community to participate. Although the starting point for Web Stack is Cool Stack 1.1, we hope it will grow much beyond that. Please vist the project site to get more details on why we are doing this. We'd love to get your feedback on whether you think this is a good idea and what open source web technologies/apps you would like to see added.
And of course, we hope that you will participate in the project. You can help by building portions of the stack, add new libraries and applications, …
[Read more]Last week I posted on MySQL Quiz Show, where among several videos I took with my camera, there appeared a guy singing a very geeky song. Well, the singer turns out to be Solomon Chang, a MySQL-certified DBA, and the song “Coder McKinnan o
In the past few days, MySQL Community 5.0.41 was released. While reading through the changelog, I noticed the following entry:
The patches for Bug #19370 and Bug #21789 were reverted.
Upon looking at Bug #21789, I noted that it was originally committed in MySQL Enterprise 5.0.32, released December 20th, 2006. The next community release which would have contained the patch is MySQL Community 5.0.33, released January 9th, 2007. This means that not only was the patch not vetted by the community, but there was a full 20 days between …
[Read more]Lately, it has been popular on blogs and elsewhere to portray the relationship between open source and closed source as a non-fight.
- In The Beautiful Game, Bryan Kirschner (who leads research strategy for the Open Source Software Lab of Microsoft) blogs about the MySQL User’s Conference and shares his thinking about why Microsoft and MySQL are working together on a number of applications, including ADO.NET provider Interop, and a Visual Studio plug-in that enables developers to access MySQL data directly from VS.
- In …
The OSBC Conference is coming up next week, May 22-23 in San Francisco. This is the absolute best business conference on open source, bar none. Matt Asay, built this conference up from nothing when the idea of open source and business was an oxymoron (like government efficiency or software quality). Matt is still the conference chair and also a top exec at Alfresco, the leading open source content management system.
Keynotes this year include Matthew Szulik from Red Hat (nice to see them participate at industry events, a rare phenomena in the past), Marc West from H&R Block, Eben Moglen on the GPL, Rob Curley from the Washington Post, …
[Read more]
I downloaded the MySQL source code over two weeks ago and finally
it is built with code coverage statistics. I am going to go
through the quick step by step process I used, although it wasn't
quick at the time I tried to figure all of this out.
1) Download the source and unpack to a directory called
"mysql".
2) cd mysql
3) BUILD/compile-pentium-gcov
This step has a tendency to give errors, especially those
requiring aclocal and ncurses/termcap libraries. Make sure you
have automake installed, but to have the proper aclocal
executable automake must be of version 1.5 or higher. The ncurses
libraries can be found, but they need the ncurses development
libraries installed as well.
4) When the build is done run the tests with 'make
test-force-full'. This will take some time, so walk away, watch
tv, go the gym, make dinner, go to bed, etc.
5) lcov -c -d . -o lcov.output
6) mkdir …