| Author |
Schema Comparison
|
Kirstin Schapitz
Greenhorn
Joined: Aug 31, 2008
Posts: 7
|
|
Hello,
I need to compare 2 mysql database schemas (tables, columns, used data types, keys, constraints) and would like to have the differences displayed.
Is there any free tool that can be run from the command line and which generates a report? Or is there a nice Java API which I can use? I know, there is some useful stuff in java.sql... where I would still need to do some programming to get what I need... I only want to do this if there is no other solution.
Thanks a lot in advance.
|
 |
Jeanne Boyarsky
internet detective
Marshal
Joined: May 26, 2003
Posts: 26144
|
|
Kirstin,
The "procedure" I use is to create a schema export in both databases and run the UNIX "diff" command against them.
|
[Blog] [JavaRanch FAQ] [How To Ask Questions The Smart Way] [Book Promos]
Blogging on Certs: SCEA Part 1, Part 2 & 3, Core Spring 3, OCAJP, OCPJP beta, TOGAF part 1 and part 2
|
 |
Kirstin Schapitz
Greenhorn
Joined: Aug 31, 2008
Posts: 7
|
|
|
Yes, the diff solution is the easiest, but not the nicest because it doesnt tell you "contraint xyz is missing" for example...
|
 |
 |
|
|
subject: Schema Comparison
|
|
|