vote up 1 vote down star
2

I would like to compare two SQL Server databases including schema (table structure) and data in tables too. What is best tool to do this?

flag

74% accept rate
must be a duplicate? – Mitch Wheat Mar 26 at 14:02
yep: stackoverflow.com/questions/193438/… – Mitch Wheat Mar 26 at 14:02

10 Answers

vote up 8 vote down check

I am using Red-Gate's software: http://www.red-gate.com

link|flag
We use this, very good. – ck Mar 26 at 9:38
And very expensive as well – tomaszs Mar 26 at 9:46
SQLCompare is very good. – John Nolan Mar 26 at 9:52
Yes - SQL Compare and SQL Data Compare are absolutely essential to our business - good stuff. – Mark Brittingham Mar 26 at 12:23
Not that expensive and a very good tool, especially after v4. Well worth the thousand dollars. – Josh Apr 3 at 13:29
show 1 more comment
vote up 0 vote down

Database Workbench can made it too

http://www.upscene.com/products.dbw.index.php

Cross database development

Use the Schema Compare and Migration Tools to compare testing and deployed databases, migrate existing databases to different database systems.

you can also made it with database Comparer

http://www.clevercomponents.com/products/dbcomparer/dbcomparer.asp

I use it for Firebird and it works well.

link|flag
vote up 3 vote down

I like Open DBDiff. It's not the most complete tool, but it works great and it's free. And it's very easy to use.

link|flag
vote up 1 vote down

I'm partial to AdeptSQL. It's clean and intuitive and it DOESNT have the one feature that scares the hell out of me on alot of similar programs. One giant button that it you push it will automatically synchronize EVERYTHING without so much as a by-your-leave. if you want to synch the changes you have to do it yourself and I like that.

link|flag
+1 Adept SQL Diff is a superb piece of software and relatively cheap – Steve Weet Apr 8 at 21:56
vote up 0 vote down

dbghost is the best i have used to date. one of the best features i have seen is that it will generate SQL code to go between versions of a database based on the SQL you keep in source control, as well as a database. simple and easy to use.

link|flag
vote up 0 vote down

I've used Red Gate's tools and they are superb. However, if you can't spend any money you could try Open DBDiff to compare schemas.

link|flag
vote up 0 vote down

I've used SQL Delta before (http://www.sqldelta.com/), it's really good. Not free however, not sure how prices compare to Red-Gates

link|flag
vote up 0 vote down

We are using an inhouse developed solution that is basicly a procedure with arguments of what you want included in the comparision (SP's, Full SP code, table structure, defaults, indices, triggers.. etc)

Depending on your needs and budget, it might be a good way to go for you as well.

It is quite easily developed as well, then we just redirect output of procedure to textfiles and do text comparisions between the files.

One good thing about it is that its possible to save the output in source control.

/B

link|flag
vote up 0 vote down

I would export the schemas plus data to plain-text.sql dumps, and then use a tool such as Beyond Compare to find the differences between the two files.

link|flag
vote up 3 vote down

I use schema and data comparison functionality build into Vistual Studio Team Edition for Database Professionals. Works like a charm. Red-Gate's tool is my second option, when you can't afford VS Team Edition license.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.