Possible Duplicate:
Best tool for auto-generating SQL change scripts for SQL Server
Has anyone has any success with open source (or retail) database diff tool for SQL Server 2005?, as I can't find any good ones in Sourceforge.
Has anyone has any success with open source (or retail) database diff tool for |
|||||
|
This question has been asked before and already has an answer. If those answers do not fully address your question, please ask a new question.
|
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 called tablediff that will do the trick. It will create the necessary .sql script to do the update/insert/delete. Quoted from MSDN:
|
|||||||||
|
|
Red-Gate products are the best, if it's a Sql Server we are talking about. (why does that sound like an advert... sorry) |
||||
|
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
|
||||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
Sql Delta. I used to use Red Gate, but their products are very heavy, and somewhat expensive. Sql Delta is here. I've been using this product now for over a year, and love it. |
|||
|
|
|
SqlDiffFramework is a visual diff program for data sources (rather than files like your typical diff program). As the name implies, it is a framework: you have to feed it two queries, one for each system you wish to compare. If you are comparing what are presumably identical DBs you would feed the same query to both. But the power of SqlDiffFramework comes in that you can compare result sets from 2 disparate data sources: SQL Server, Oracle, MySql, or any ODBC data source (e.g. Access, Excel, ODBC, etc.). To my knowledge this makes it unique among all the tools out there. SqlDiffFramework provides two side-by-side query tools in one window. You simply point one side to each database, then run both queries to fetch and compare the data. (You can even save snapshots and then run a diff on the snapshots of your choice to see how differences, if any, emerge over time.) SqlDiffFramework compares only data, not schemas. Also it does not generate scripts to make them match. [I introduced SqlDiffFramework in April, 2010; it is open-source and freely available.] |
|||
|
|
|
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. |
|||
|
|
|
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. |
|||
|
|
|
seriously check out SQL Examiner. I swear by it. It's up there with Visual Studio and Management Studio as my essential .NET development tools. |
|||
|
|
|
I would definitely go with AdeptSQL if you're using MSSQL. It's the least good looking but the most talented db compare tool amongst the ones I've tried. It can compare both the structure and the data. It tells you which tables exist on one db but does not exist on the other, compares the structure and data of the common ones and it can produce the script to synchronize the two. It's not free but has a 30 day trial (as far as I can remember) |
|||
|
|
|
i use Red Gate for doing the schema & data comparisons. It is very powerful and user friendly. |
|||
|
|
|
Well, you definitely should try our solutions: dbForge Schema Compare for SQL Server and dbForge Data Compare for SQL Server. Their main advantages are high speed (up to 3 times quicker than most competitors) and extreme reliability. Those tools are not free, but you can use 30-days trial for free and you have an opportunity to get a free license for both of the products - please refer to our free license conditions page. |
|||
|
|
|
I agree with what a lot of people here are saying... RedGate is great, but very bulky and kind of slow. I have been playing with SQLDelta, but I don't like the UI... I actually feel like it's too robust. (If that makes sense) There's one I found called Gemini Delta - SQL Difference Manager for .NET that is lightning fast. It compares SPs, tables, etc... but not row-level data. |
|||
|
|
|
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) |
|||
|
|
|
There is also CompareDB |
|||
|
|
|
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. |
|||
|
|
|
Check out SQL Examiner Suite. The tool compares (and synchronizes) both schema and data. I use SQL Examiner for keeping database schema under version control. |
|||
|
|
This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.