vote up 1 vote down star

Here's a problem I've been trying to solve at work. I'm not a database expert, so that perhaps this is a bit sophomoric. All apologies.

I have a given database D, which has been duplicated on another machine (in a perhaps dubious manner), resulting in database D'. It is my task to check that database D and D' are in fact exactly identical.

The problem, of course, is what to actually do if they are not. For this purpose, my thought was to run a symmetric difference on each corresponding table and see the differences.

There is a "large" number of tables, so I do not wish to run each symmetric difference by hand. How do I then implement a symmetric difference "function" (or stored procedure, or whatever you'd like) that can run on arbitrary tables without having to explicitly enumerate the columns?

This is running on Windows, and your hedge fund will explode if you don't follow through. Good luck.

flag

Ok, Red Gate is certainly a solution. But shouldn't this be a very common problem? Shouldn't there be a straightforward programmatic solution? – Jake Sep 16 '08 at 1:31

2 Answers

vote up 1 vote down check

My first reaction is to suggest duplicating to the other machine again in a non-dubious manner.

If that is not an option, perhaps some of the tools available from Red Gate could do what you need.

(I am in no way affliated with Red Gate, just remember Joel mentioning how good their tools were on the podcast.)

link|flag
Ah. You beat me to the punch! – Charles Graham Sep 16 '08 at 1:02
vote up 0 vote down

Use the SQL Compare tools by Red Gate. It compares scheamas, and the SQL Data Compare tool compares data. I think that you can get a free trial for them, but you might as well buy them if this is a recurring problem. There may be open source or free tools like this, but you might as well just get this one.

link|flag

Your Answer

Get an OpenID
or

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