vote up 0 vote down star

I would like to know how to compare two different database table records. What I mean is I will compare two database tables which may have different column names but same data. But one of them may have more records than the other one so I want to see what the difference is between those two tables. To do that how to write the sql query ? FYI : these two databases are under the same SQL Server instance.

Table1
------+---------
|name |lastname|
------+---------
|John |rose    |
------+---------
|Demy |Sanches |
------+---------

Table2
------+----------
|name2|lastname2|
------+----------
|John |rose     |
------+----------
|Demy |Sanches  |
------+----------
|Ruby |Core     |
------+----------

Then when after comparing table 1 and table 2, it should return Ruby Core from Table2.

flag

1  
Just trying to clarify your question. Which of the following are you interested in? 1. Column name differences between to tables where the column data is semantically the same? 2. Rows which are in one table but not in another? 3. Rows which are similar, but might differ on X number of columns? 4. Just which table has more records? – Scanningcrew Sep 11 at 15:56
Okay, I edited the question. – Aaron Sep 11 at 16:36

2 Answers

vote up 2 vote down check

If you do an outer join from T1 to T2 you can find rows in the former that are not in the latter by looking for nulls in the T2 values, similarly an outer join of T2 to T1 will give you rows in T2. Union the two together and you get the lot... something like:

SELECT 'Table1' AS TableName, name, lastname FROM
    Table1 OUTER JOIN Table2 ON Table1.name = Table2.name2 
                             AND Table1.lastname = Table2.lastname
WHERE Table2.name2 IS NULL
UNION
SELECT 'Table2' AS TableName, name2 as name, lastname2 as lastname FROM
    Table2 OUTER JOIN Table1 ON Table2.name2 = Table1.name 
                             AND Table2.lastname2 = Table1.lastname
WHERE Table1.name IS NULL

That's off the top of my head - and I'm a bit rusty :)

link|flag
Let me try your method. Thanks. – Aaron Sep 13 at 0:55
vote up 0 vote down

Firefly will do exactly what you're looking for. It lets you build two sql statements then compare the results of the sql queries showing missing rows and data differences. Each query can even come from a different database like oracle / sql server.

http://download.cnet.com/Firefly-Data-Compare-Tool/3000-10254%5F4-10633690.html?tag=mncol

link|flag
Thanks, but actually I am not looking for software which can do what I want. I want to implement it by myself. Thanks. – Aaron Sep 13 at 0:57

Your Answer

Get an OpenID
or

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