我目前正在开发一个使用MySQL数据库的应用程序。

数据库结构在开发过程中仍在变化和变化(我更改本地副本,只保留测试服务器上的副本)。

是否有一种方法可以比较数据库的两个实例,以查看是否有任何更改?

虽然目前简单地丢弃之前的测试服务器数据库是可以的,但是随着测试开始输入测试数据,这可能会变得有点棘手。 同样的情况会在以后的制作中再次发生……

是否有一种简单的方法来增量地对生产数据库进行更改,最好是自动创建一个脚本来修改它?


答案中提到的工具:

Red-Gate的MySQL模式和数据比较(商用) Maatkit(现为Percona) liquibase 蟾蜍 Nob Hill数据库比较(商业) MySQL Diff SQL EDT(商用)


当前回答

如果您正在使用小型数据库,我发现在两个数据库上运行mysqldump,使用——skip-comments和——skip-extended-insert选项生成SQL脚本,那么在SQL脚本上运行diff效果非常好。

By skipping comments you avoid meaningless differences such as the time you ran the mysqldump command. By using the --skip-extended-insert command you ensure each row is inserted with its own insert statement. This eliminates the situation where a single new or modified record can cause a chain reaction in all future insert statements. Running with these options produces larger dumps with no comments so this is probably not something you want to do in production use but for development it should be fine. I've put examples of the commands I use below:

mysqldump --skip-comments --skip-extended-insert -u root -p dbName1>file1.sql
mysqldump --skip-comments --skip-extended-insert -u root -p dbName2>file2.sql
diff file1.sql file2.sql

其他回答

有一个使用perl编写的有用工具叫做Maatkit。它有几个数据库比较和同步工具。

apache zeta组件库是一个通用的松耦合组件库,用于开发基于PHP 5的应用程序。

eZ组件- DatabaseSchema允许您:

   .Create/Save a database schema definition;
   .Compare database schemas;
   .Generate synchronization queries;

你可以在这里查看教程: http://incubator.apache.org/zetacomponents/documentation/trunk/DatabaseSchema/tutorial.html

非常容易使用的比较和同步工具: 数据库比较器 http://www.clevercomponents.com/products/dbcomparer/index.asp

优点:

快 使用方便 易于选择要应用的更改

缺点:

不同步长度到小整数 没有正确地同步索引名 不同步注释

dbSolo,它是付费的,但这个功能可能是你正在寻找的 http://www.dbsolo.com/help/compare.html

它适用于Oracle, Microsoft SQL Server, Sybase, DB2, Solid, PostgreSQL, H2和MySQL

从功能比较列表中…MySQL Workbench在社区版中提供了模式差异和模式同步。