There's a story on CNet about IBM considering open sourcing DB2. While there are no immediate plans, IBM UK's director of information management software Chris Livesy has said that market conditions may make it unavoidable. "Looking at IBM's heritage in contributing to the open-source market, we've been particularly keen to lead that market. Open source is an interesting space, as a whole. As the future unfolds, and the economics become clearer, there's going to be more commitment to open source by everybody. We've made good steps towards that." And why not? A while back, I predicted that within 10 years... READ MORE
How To Set Up WebDAV With MySQL Authentication On Apache2 (Debian Etch)
This guide explains how to set up WebDAV with MySQL authentication (using mod_auth_mysql) on Apache2 on a Debian Etch server. WebDAV stands for Web-based Distributed Authoring and Versioning and is a set of extensions to the HTTP protocol that allow users to directly edit files on the Apache server so that they do not need to be downloaded/uploaded via FTP. Of course, WebDAV can also be used to upload and download files.
On my current project my team had to develop a portlet interface. Users can load portlets and organize them in multiple tabs with 3 columns per tab. They can reorganize the order of their tabs and move portlets within a tab an also move them to new tabs. Portlets are always placed at the top left when they get added or moved to a tab. Furthermore portlets and tabs can be removed, though the last delete operation can always be undone. All of this essentially required me to devise a plan for how to manage ordered lists inside an RDBMS.
Note that while this was written for MySQL (it makes heavy use of MySQL session user variables), I am using the Oracle style named placeholder support that PDO emulates for MySQL. So do not get confused by ":foo" in the SQL statements. This is just like the "?" you should know if you ever used prepared statements with MySQL. Furthermore I am using pseudo code control logic around the SQL. I think it should be …
[Read more]
In the last several months at Grazr, we've been wrestling with a
large database (running on MySQL) of feeds and feed items. The
schema is essentially a feeds table with child tables items,
items_text (text), and enclosures. We have this database to
provide the means for users to be able to merge (a Stream) feeds
so that you have an aggregate feed with items for whatever feeds
you want in the list of feeds for your merge. It works great, the
only problem being the volume of data, which more data means the
query to produce that merge becomes slower. We want this merge to
be able to be run on the fly, and if it's too slow, the user
experience is unacceptable.
So, now I'm in the process of implementing a "Hot Cache" of feeds
with an LRU (Least Recently Used) policy. The idea being, that
this cache provides a smaller data set for performing the merge
query against. We need to be able to handle storing much more
data than we currently do …
How To Set Up WebDAV With MySQL Authentication On Apache2 (Debian Etch)
This guide explains how to set up WebDAV with MySQL authentication (using mod_auth_mysql) on Apache2 on a Debian Etch server. WebDAV stands for Web-based Distributed Authoring and Versioning and is a set of extensions to the HTTP protocol that allow users to directly edit files on the Apache server so that they do not need to be downloaded/uploaded via FTP. Of course, WebDAV can also be used to upload and download files.
To coincide with EURO 2008, I’m embarking on a virtual European tour, taking a quick look at open
source policies and deployment projects in the 16 nations that
are competing in the tournament.
The Czech Republic team was just three minutes away from qualifying for the knockout stages of EURO 2008 on Sunday before Turkey managed to turn a 2-1 deficit into a 3-2 win. Publicly available information on Czech open source deployment projects suggests that the country has had rather more luck when it comes to open source.
Key projects:
There was early success in 2001 when …
We are very pleased to announce the release of MONyog 2.5 Beta 1.
This is a major upgrade from the previous releases.
MySQL currently lacks advanced query profiling tools like SQL
Server’s Query Profiler. While the current breed of MySQL
monitoring tools provide monitoring and advisory information on
various system metrics, they don’t help in pinpointing the
problematic queries. No amount of hardware upgrades or tuning of
mysql.cnf / mysql.ini parameters can match the performance gains
that can be achieved when problematic queries and identified,
rewritten and/or appropriate indexes are created.
MONyog 2.5 helps in identifying problem SQL by
1) Analyzing the general query log
2) Analyzing the slow query log
3) If the above mentioned logs are unavailable then MONyog query
sniffer can capture the results of SHOW PROCESSLIST at
user-defined …
When I first saw ZDNet reporting that IBM may open source its DB2 database, I kept waiting for the other shoe to drop. The comment that led to the report? "We have a light version of the product offered for free, which is a step towards exposing our core (DB2) ...
ZDNet and its sister sites ran an interesting story yesterday indicating that IBM might be preparing to release its DB2 database under an open source license. If true, it would be a fascinating turn of events that would have a significant impact on the database industry. Unfortunately, it’s not.
I was immediately suspicious when reading the initial story. For a start it quotes a UK IBM executive: IBM’s UK director of information management software, Chris Livesey. With all due respect to him, if IBM was even hinting at open sourcing DB2, it would surely be rolling out the big guns.
Additionally, I’ve had briefings in the last couple of weeks with both IBM’s data management and open source executives, neither of whom thought to mention open sourcing DB2. That didn’t rule it out entirely of course.
Then there was what …
[Read more]I’m at the Sun Tech Days in beautiful Philippines, and all I can say is the energy is tremendous. I’m hearing there are about 1,400 attendees, and this number might grow tomorrow.
Armed with a video camera, I decided to take a few video snapshots. My first victimguest on my yet to be named videocast is Wen Huang, Product Manager for NetBeans, at Sun Microsystems.
Wen Huang has been a MySQL user since 1999, and had a past life as a web developer in various web shops, some large, some small. One commonality he had at all his jobs though is that they always use MySQL.
He’s an action junkie, preferring to have the latest version of the MySQL database all the time, and can’t wait for MySQL 5.1 when …
[Read more]