-
Interaction
Hey all. Please comment on this entry. I’m trying to get an idea of who’s listening to what I say. Why do you read this blog? Are you interested in community wireless networks? OpenGL development on Linux? Family? Business Intelligence? Synchronizaton Manager news? Freecycle™ development? Random Perl bits? Something else I’ve forgotten about? I’m finding…
-
New release of MaxDB: 7.6.00.27
I’m happy to announce new releases of MaxDB 7.6. The Devs have put a lot of time and energy into this release and it addresses many issues. Take a look through the Change Log for some details. Grab a copy of the new release here: http://dev.mysql.com/downloads/maxdb/7.6.00.html
-
Contributed to PeterZ’s talk at MySQL UC 2006
Hey, look! Peter mentioned me in his presentation at the UC this year. UC2006-MySQL-Performance-Landscape.pdf I let him use the Sunfire T2000 I borrowed from Sun (which I should return today) to generate some statistics for the talk.
-
Moved blog, took long weekend
For those of you who want to hear me read this instead of having to do so yourself (no hyperlinks), click here for .ogg and here for .mp3. I migrated the blogs’ database and code from moonunit to avenger, both of which run Debian Sarge. Y’all should now notice a vast improvement in throughput. The…
-
Trip to Microsoft on 2006/05/02
I went to Microsoft with Arjen the other day. We talked with Eric Lippert about some new features of C# 3.0 and how MySQL might integrate itself more deeply into the Microsoft Development Environment. More details if anyone makes noise about being interested.
-
A quick over-view of RDBMSs’ general place in the world, and ours in particular
[1][2][3] RDBMSs (or for clarity, Databases) are a basic element of any computer-based appliance in the same way as are an Operating System, Web Server and software development platform. As is common for developers of Open Source software, I am quite familiar with Linux as the Operating System, Apache as the Web Server, MaxDB and…
-
MySQL AB :: The MaxDB series on PlanetMySQL.
We’ve published the first few episodes of the weekly MaxDB series in .pdf form. Please take a look and let us know what you think! MySQL AB :: The MaxDB series on PlanetMySQL.
-
Useful MaxDB commands
To find a list of tables in a schema: $ sqlcli -u TEST,TEST -d SYNCMANA “SELECT * FROM TABLES WHERE SCHEMANAME = ‘TEST'” To find a list of triggers on a table: $ sqlcli -u DBSERVICE,SECRET -d SYNCMANA “SELECT * FROM TRIGGERS WHERE TABLENAME = ‘T'” To describe a table’s structure: $ cat me &&…
-
Synchronization Manager: MySQL as replication destination
Earlier this week, I wrote about the Synchronization Manager and gave a step-by-step tutorial on getting an initial scenario implemented. In this article, I’ll expand on the previous tutorial by introducing the concept of uni-directional synchronization. Uni-directional participants act as destinations for replicated data. These participants are sometimes called “slaves,” because they are not capable…