vote up 10 vote down star
8

I have a database in MySQL that I am currently developing. I have a copy of this database on my development machine which I modify as fast as I develop and a copy on a test server. My question is:

Is there a way to compare the two instances of the database to see if there was any changes?

Its not a real problem to simply re-deploy the database on the test server but as the end user's start entering test data it could be a bit tricky. A related question is also relevant a little later on in production...

Is there an easy way to incrementally make changes to the production database? That is, suppose I add one new table and modified one existing table, are there tools that will detect the changes and generate scripts that will safely perform the updates on the production copy of the database?

EDIT: Tools mentioned in the answers:

flag

Similar question here: stackoverflow.com/questions/218499/… – R4Y Oct 22 '08 at 14:17
1  
I believe RedGate's tools are for SQL Server only. – Dave R. Dec 23 '08 at 15:50

11 Answers

vote up 6 vote down check

Toad for MySql has data and schema compare features, and I believe it will even create a synchronization script.

link|flag
All the tools mentioned look good. I am selecting Toad arbitrarily for now until I could conduct some more research. – Vincent Ramdhanie Oct 22 '08 at 14:25
vote up 3 vote down

There is a useful tool written using perl called Maatkit. It has several database comparison and syncing tools among other things.

link|flag
I did not know about this project! Thanks, it looks like it has quite a few tools that would be extremely useful. – Vincent Ramdhanie Oct 22 '08 at 13:51
vote up 3 vote down

Have a look at http://www.liquibase.org/

link|flag
vote up 2 vote down

I use a piece of software called Navicat to :

  • Sync Live databases to my test databases.
  • Show differences between the two databases.

It costs money, it's windows and mac only, and it's got a whacky UI, but I like it.

link|flag
It does runs on Linux. I have it open on another desktop at the moment. The structure sync feature to push schema changes from dev->test->live is worth the licence fee alone. – Colonel Sponsz Oct 22 '08 at 14:10
vote up 2 vote down

For myself, I'd start with dumping both databases and diffing the dumps, but if you want automatically generated merge scripts, you're going to want to get a real tool.

A simple Google search turned up the following tools:

link|flag
vote up 2 vote down

If you only need to compare schemas (not data), and have access to Perl, mysqldiff might work. I've used it because it lets you compare local databases to remote databases (via SSH), so you don't need to bother dumping any data.

http://adamspiers.org/computing/mysqldiff/

It will attempt to generate SQL queries to synchronize two databases, but I don't trust it (or any tool, actually). As far as I know, there's no 100% reliable way to reverse-engineer the changes needed to convert one database schema to another, especially when multiple changes have been made.

For example, if you change only a column's type, an automated tool can easily guess how to recreate that. But if you also move the column, rename it, and add or remove other columns, the best any software package can do is guess at what probably happened. And you may end up losing data.

I'd suggest keeping track of any schema changes you make to the development server, then running those statements by hand on the live server (or rolling them into an upgrade script). It's more tedious, but it'll keep your data safe. And by the time you start allowing end users access to your site, are you really going to be making constant heavy database changes?

link|flag
vote up 1 vote down

For the first part of the question, I just do a dump of both and diff them. Not sure about mysql, but postgres pg_dump has a command to just dump the schema without the table contents, so you can see if you've changed the schema any.

link|flag
MySQL has a similar command mysql_dump. This might be a solution if I could integrate it in a deployment process. Thanks. – Vincent Ramdhanie Oct 22 '08 at 13:47
Also, for a more user-friendly experience, you can get the same using phpMyAdmin - a real killer for MySQL users! – schonarth Oct 22 '08 at 13:51
vote up 1 vote down

From the feature comparison list... MySQL Workbench offers Schema Diff and Schema Synchronization in their community edition.

link|flag
vote up 1 vote down

SQL Compare by RedGate http://www.red-gate.com/products/SQL_Compare/index.htm

DBDeploy to help with database change management in an automated fashion http://dbdeploy.com/

link|flag
vote up 1 vote down

There is another open source command-line mysql-diff tool:

http://bitbucket.org/stepancheg/mysql-diff/

link|flag
vote up 0 vote down

Hi guys. I'm working with Nob Hill's Marketing team, I wanted to tell you I'll be happy to hear your questions, suggestion or anything else, please feel free to contact me.

We originally decided to create our tool from scratch because while there are other such products on the market, none of them do the job right. It’s quite easy to show you the differences between databases. It’s quite another to actually make one database like the other. Smooth migration, both of schema and data, has always been a challenge. Well, we have achieved it here.
We are so confident that it could provide you a smooth migration, than if it doesn’t – if the migration scripts it generates are not readable enough or won’t work for you, and we can’t fix it in five business days – you will get your own free copy!

http://www.nobhillsoft.com/NHDBCompare.aspx

link|flag
is that a promise? I tried it and it fell over with a fair few errors, not least that when migrating a function it attempts to use the same owner as the original database – Cruachan May 29 at 11:52
Yes its a promise. For most people the tool is working just fine. We promise a license for life for any bug that you find and we can't fix within 5 business days. Please contact our support team. – Itamar Jun 4 at 5:22

Your Answer

Get an OpenID
or

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