Tag: Open Source

Community

Introducing MySQL Table Sync

(Xaprb) MySQL Table Sync efficiently finds and resolves data (not structural) differences between two MySQL tables, which may be on different servers. It offers two search algorithms to find the rows that differ, and several methods to bring the destination table into sync with the source.

Community

MySQL Proxy

(Jan Kneschke) As an exercise I wrote a proof of concept of a proxy for MySQL. It isn’t using any code from the MySQL Server, only some headers files. I only used the internals document and implemented the server-side protocol of it.

Community

So, why use mySQL 5.0

(Dathan) Every database that houses user generated content is a master in at least 1 pair within my environment. To make sure that id’s don’t collide we engineered around the auto-increment functionality or lack there of in mySQL-4.1. For the most part the auto-increment is externally generated.

Community

MySQL Active – Active Clustering

(Oli Sennhauser) It is possible to use an active – active shared-disk cluster in MySQL in some cases. For doing this you have to fulfill the following requirements: • Works with MyISAM tables only. • POSIX-locking compliant cluster file system on the device (such as OCFS2 or GFS). • External lo

Community

Myths, GUID vs Autoincrement

(Brian Aker) I am a fan of using GUIDs as primary keys. They are database independent, object independent and I can either create them in my application or in the database (MySQL since 5.0 has had a UUID() function but since it does not replicate I don’t use it normally… this has been fixed in 5