Ask me a couple of months ago and I would have said that I was going to join Sun Microsystems after their acquisition of MySQL. Ask me two weeks ago and I would have said that I hope that things would work out.At the end of this month, MySQL as a corporate entity would cease to exist and the MySQL employees become Sun Microsystems employees. Except for me and a small handful of people: Today,
There is an interesting theory in psychology called the hierarchy of needs, which said that once
people's basic needs such as food and sleep are fulfilled, they
would turn to higher needs for love, self-esteem, and ultimately
self-actualization.
I am starting to see a similar hierarchy of needs for enterprise
software, both from general trends in the industry and from our
experiences with the opentaps Open Source ERP + CRM system: As
organizations satisfy their most basic software needs, they tend
to go up the ladder and turn to "higher" and more sophisticated
needs. This "enterprise software hierarchy of needs" seems to
follow this …
MySQL MagazineApril 15, 2008Introducing Kickfire (http://www.paragon-cs.com/mag/issue4.pdf)
Welcome to the 89th edition of Log Buffer, the weekly review of database blogs.
Welcome, welcome everyone.
In writing this week’s Log Buffer, I’ve had a chance to sit down and read some excellent posts on all sorts of platforms. The depth and breadth of what’s available to house and retrieve data is astonishing.
Many of you who have read my posts will know that I’m a fan of vegetables. They are something most of us don’t eat enough of. Come on DBAs! I think we need to make a collective effort to get healthy. We need you to keep all these systems alive. I say this because I have a new found appreciation for the work we do day in and day out.
Six months ago my wife and I said hello to our baby girl for …
[Read more]Ah, the perils of working in a shared, client environment. One client has us using a login that is not exclusive to us. I prefer using bash; the client is set to use zsh. This is not a problem in and of itself.
However, there is a section in the .profile that is
causing me issues:
if [ -f /usr/bin/ksh ]; then
/usr/bin/ksh -o vi
exit
fi
So, “If ksh exists, run it with some options to edit history with vi-like commands”. Except what we really want is “If you’re using the ksh as a shell, . . . .”
So I added a modification, and now all is fine.
if [ -f /usr/bin/ksh ]; then
if [ "$SHELL" = "/usr/bin/ksh" ]; then
/usr/bin/ksh -o vi
exit
fi
fi
(not all my problems are MySQL related!)
Myself and Larry had the great pleasure in opening a new market the other week. The Philippines marked our fifth new market that we opened together, we anticipate more markets in the upcoming quarter in 2008. Our new Philippine partner, Touch Solutions, Inc., the authorized Philippine distributor for MySQL and authorized Philippine MySQL education center has joined the MySQL family in the Philippines.
Overall I would say that the full day event was a great success, standing room only. It was a great chance to meet not only the variety of community users but also enterprise customers. Anson Uy (32), the young and savvy business man is the …
[Read more]MySQL Users Conference is coming and with it my presentation about Innodb Scalability limits. We did bunch of tests but we surely could get benefit of some extra hardware for testing, so if you could provide us with dedicated remote access for benchmarks it would be great.
Here is what we're looking for in particular:
- More than Dual Core Opteron systems. Would be good to see how
they scale
- More than 8 core systems
- Non x86 based systems (Niagara etc)
- Fancy IO subsystem - more than 8 hard drives
- SSD based storage.
If you have something of this sort available let me know.
Entry posted by peter | 8 comments
Add to: …
[Read more]the march of progress continues, with the release of mysql connector/odbc 3.51.24. we are down to 33 bugs, most of which will not get fixed further 3.51 releases, but will be fixed in 5.1 or later. i think the two remaining issues we might fix in 3.51 are the crashes of the setup library on mac os x (which may just require a 10.5 build) and bug #12805.
Today I spent the larger part of the afternoon at the Sun office in Amersfoort. And, Yes, I signed ;-) and joined the now largest open source company in the world.
I was lucky enough to attend the JasperSoft Seminar held at their
headquarters in San Francisco yesterday (March 19, 2008). There
were basically 3 sessions and I personally did not get much from
the seminar.
What I found interesting was that I was able to talk to Guilio
Toffoli who created the iReport which is basically the GUI
software to create JasperReport xml files. We talked about
performance limits of the software, problems that I had with
designing the queries using SQLeonardo, and other stuff.