From: Daevid Vincent Date: February 7 2003 1:28am Subject: Is there a SQL/diff program out there? List-Archive: http://lists.mysql.com/mysql/131801 Message-Id: <005601c2ce48$2bca4a80$0801a8c0@telecom> MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit I searched google, but didn't find anything. SYNOPSIS: Wondering if anyone knows of, or has built, or is interested in building a program that will take two .sql schema dumps (one new and one old) and create the ALTER / CREATE TABLE syntax to make the old one look like the new one. It should work in such a way that it doesn't matter if the table's schema are in the same order or not. REASON: We do a lot of development on our dev server and this involves creating new fields in the databases and even new tables. We have to manually go through using a script and update all the 'live' databases then so they jive with our dev environment. It's quite tedious to remember all that's changed and manually make the 'alter table' syntax ourselves. I'm surprised this isn't a more common tool request and it doesn't exist already -- at least none that I can find. There are ten million mySQL graphical clients out there, you'd think one of them would have such a useful feature. Is this something that people would want/use? If so, I'll build it. I just didn't want to spend the time/energy if it existed already somewhere.