I can't find any good ones in sourceforge :( Anyone has any success with open source (or retail) database diff tool?
EDIT: for sqlserver 2005
|
12
|
I can't find any good ones in sourceforge :( Anyone has any success with open source (or retail) database diff tool? EDIT: for sqlserver 2005
|
||||
|
|
|
If you are looking for a way to compare the data in 2 tables in 2 different databases, then MS has a nice free hidden tool that will do the trick. It will create the necessary .sql script to do the update/insert/delete. The tablediff utility is used to compare the data in two tables for non-convergence, and is particularly useful for troubleshooting non-convergence in a replication topology. This utility can be used from the command prompt or in a batch file to perform the following tasks:
Syntax tablediff [ -? ] | { -sourceserver source_server_name[\instance_name] -sourcedatabase source_database -sourcetable source_table_name [ -sourceschema source_schema_name ] [ -sourcepassword source_password ] [ -sourceuser source_login ] [ -sourcelocked ] -destinationserver destination_server_name[\instance_name] -destinationdatabase subscription_database -destinationtable destination_table [ -destinationschema destination_schema_name ] [ -destinationpassword destination_password ] [ -destinationuser destination_login ] [ -destinationlocked ] [ -b large_object_bytes ] [ -bf number_of_statements ] [ -c ] [ -dt ] [ -et table_name ] [ -f [ file_name ] ] [ -o output_file_name ] [ -q ] [ -rc number_of_retries ] [ -ri retry_interval ] [ -strict ] [ -t connection_timeouts ] } Arguments [ -? ]
-sourceserver source_server_name[\instance_name]
-sourcedatabase source_database
-sourcetable source_table_name
-sourceschema source_schema_name
-sourcepassword source_password
-sourceuser source_login
-sourcelocked
-destinationserver destination_server_name[\instance_name]
-destinationdatabase subscription_database
-destinationtable destination_table
-destinationschema destination_schema_name
-destinationpassword destination_password
-destinationuser destination_login
-destinationlocked
-b large_object_bytes
-bf number_of_statements
-c
-dt
-et table_name
-f [ file_name ]
-o output_file_name
-q
-rc number_of_retries
-ri retry_interval
-strict
-t connection_timeouts
Return Value |
|||
|
|
|
Red-Gate products are the best, if it's a Sql Server we are talking about. (why does that sound like an advert... sorry) |
||
|
|
|
|
What database? Red Gate has some good (commercial) products for SQL Server. |
||
|
|
|
|
Redgate SQL Compare and SQL Data Compare are awesome |
||
|
|
|
|
As far as I'm concerend you cannot beat Red-Gate SQL compare. They have a 14 day trial so you can check out what the product can do. They also have a data compare product that will compare the data contents. |
||
|
|
|
|
I use red gate sql bundle. Its very good, you can compare schema and data as well and generate diff scripts or sync the databases directly from the tool itself. With the pro version you can even automate the tasks. |
||
|
|
|
|
It really matters what database we are talking about here. There are different tools for each one. There are tools SQLDiff and the Red Gate products which have already been mentioned. |
||
|
|
|
|
asked already http://stackoverflow.com/questions/10688/best-tool-for-auto-generating-sql-change-scripts#10768 |
||
|
|
|
|
Do you need to diff data or the structure? To diff data we use EMS Data Comparer and we are pretty happy about it. Their new version is very useful and they have version for different kinds of databases. EMS also has a diff tool for structure but I did not like it as much. Then again that was ~ 2 years ago and they had put out more than couple new versions since. PS. EMS is not free or open source. |
||
|
|
|
|
For SQL Server, it is built into Visual Studio Team System 2008 Database Edition, aka DataDude |
||
|
|
|
|
Are you comparing database schemas? For Oracle, I have always found it easy to use 'TOAD' when comparing 'schemas' (not the data) |
||
|
|
|
|
REDGATE SqlCompare FTW! They'll work with you on personal pricing and they're a great group to work with. I dont even think about my sql builds anymore. I run the compare and then let the sync wizard do its thing. Its nice having that level of comfort when i need to push db changes. Definitely go redgate. |
||
|
|
|
|
It is a free, fairly decent database diff tool. It does do a good job of showing the differences between db objects like tables, stored procedures, views, etc. The databases it supports for diffing are SQL Server, MySQL, and MS Access (but not Oracle.) One feature it does lack is the functionality to generate the sql scripts that represent the diff. Nonetheless, it still is a handy tool for quick and dirty situations if unable to spend $$ on some of the more commercial products available out there. |
||
|
|
|
|
There is also CompareDB |
||
|
|
|
|
You have also the Data compare tool thats good for SQL as well as MySQL. |
||
|
|
|
|
I was wondering about this too. I've been doing this somewhat differently, just using standard tools like diff and mysqldump. Granted, mysqldump is only a standard tool if you're using MySQL... but I gather there are similar programs available for other DBMS, and/or ways to convert those databases to mysql. My method works well enough, but I thought it would nice to find out if there was an actual tool for this that's free. I guess not? Anyway what follows is a basic gist of what I do to compare entire databases. I don't really do things exactly this way -- for example I usually use git diff -- and I didn't test this code, so some of the commands may be missing options, or have the wrong ones. Overview
Dumping
Diffing
|
||
|
|
|
|
There are a couple of really nice freeware GUI tools that can be found at http://www.xsqlsoftware.com/ - xSQL Object and xSQL Data Compare, there are 'lite' versions of these tools available which I have used in the past and found that they fulfilled my needs very well. |
||
|
|