up vote 55 down vote favorite
33
share [g+] share [fb]

Does anyone know any visual MySQL diff tools?

I have about 10 machines all with their own instance of MySQL. No replication is taking place, since each machine acts independently of the others. However, their table structures must be identical, and I would like a quick way to verify their table structures.

I'm not so concerned about the data in the tables. However, if the tool supports table data comparisons, I'd definitely like to check that out, too.

If you've worked with a good command-line tool, I'm open to that as well.

EDIT: Tools mentioned in the answers:

link|improve this question
feedback

protected by YOU Apr 29 '11 at 20:34

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

13 Answers

up vote 31 down vote accepted

Toad® for MySQL can do both a "Schema Compare" as well as a "Data Compare" (and a lot more).

By the way: the software is freeware - in case somebody asks.

link|improve this answer
I know Toad for Oracle does this, I would assume it's in there for MySQL as well. – Anson Smith Oct 20 '08 at 14:02
Just checked and yes - Toad for MySQL can do both. – Stefan Gehrig Oct 20 '08 at 14:10
9  
it's also a windows only program. – Omry Mar 23 '10 at 10:51
Apparently, it requires full root privileges in both servers :( But it has like 20 visual themes to choose for! – Álvaro G. Vicario Oct 13 '10 at 14:55
I didn't really like the display of Toad, was nearly easier to look at two CREATE TABLE schemas and see what was different – Abe Petrillo Jun 8 '11 at 11:41
feedback

Try mysql-diff. It does good job comparing table structures, but does not support all modern MySQL features. It is command line and free.

link|improve this answer
it also requires only Java installed, which is a plus for me. The app itself is written in Scala (running over JVM, of course) – user114795 Mar 13 '11 at 16:51
feedback

You should take a look at Devart's database compare tools for MySQL:

link|improve this answer
Tried, Worked great, thanks! – neobie Jul 29 '11 at 11:18
feedback

Maatkit has a tool for ensuring tables on two database instances are in sync, but operates on data rather than just schema. Doing something with diff and the output of show create table <table>; on the two nodes you're trying to compare would seem to be the easiest way of doing what you're talking about.

link|improve this answer
yep, i've done exactly that (mysqldump --no-data | diff - otherschema.sql) to stay in sync. – Javier Oct 20 '08 at 14:06
feedback

Since you're not mentioning any license requirement, there's a paid app that does both structure/data comparison and synchronization. It's Navicat. It got a nice feature to:

  • Compare database structure and/or data
  • Synchronize database structure and/or data

I used it on a mac, and there are also windows & linux version. It's not cheap, but it's worth to try.

link|improve this answer
feedback

I just accomplished this with the "Structure Synchronization" tool in Navicat. It analyzed two databases, presented the differences in a color-coded tree, and offers to run the SQL to bring the target up-to-date with the source.

It lets you save synchronization profiles, which I'm sure will come in handy for deploying updates to the Django (python manage.py syncdb stinks!) app I'm working on.

One catch was I had to turn off comparing indexes because the unique identifiers on each host were different:

  `group_id_refs_id_f116770`(group_id) != `group_id_refs_id_fee9890`(group_id)
link|improve this answer
feedback

Here's a Perl module that can diff two MySQL database schemas:

SQL Translator: sqlt-diff

http://search.cpan.org/~ribasushi/SQL-Translator-0.11005/script/sqlt-diff

link|improve this answer
feedback

SQLYog can do that too.

link|improve this answer
feedback

RedGate compare?

Costs money but it's incredible.

http://www.red-gate.com/products/sql-development/sql-compare/

link|improve this answer
It's a great tool. I use it myself as part of my versioning solution for SQL Server databases. It is not, however, available for MySQL. – Kirk Woll Apr 29 '11 at 21:26
Red Gate recently released MySQL versions of their comparison tools: mysql-compare.com – David Atkinson May 2 '11 at 10:50
feedback

In case you use hibernate then you can also do it with SchemaValidate.

link|improve this answer
feedback

It's command line only, but it's Open Source and will do the job:

www.diffkit.org

link|improve this answer
feedback

MySQL Workbench http://www.mysql.com/products/workbench/features.html

link|improve this answer
feedback

Here is a free PHP script I'm working on that diffs two MySQL database schemes and generates a sequence of statements to "alter" a destination database to match the source one. Note this is a work in progress, incomplete and not ready for production use.

https://github.com/caviola/mysqldiff

Even though a MySQL diff tool is a big step forward, we always must carefully review the generated "alter" script and hand-tune it. Besides, some "alter" operations can take a long time depending on table/index size.

You may also want to take a look at these "online schema modification" tools:

  1. http://www.facebook.com/notes/mysql-at-facebook/online-schema-change-for-mysql/430801045932
  2. http://openarkkit.googlecode.com/svn/trunk/openarkkit/doc/html/oak-online-alter-table.html
link|improve this answer
feedback

Not the answer you're looking for? Browse other questions tagged or ask your own question.