vote up 2 vote down star

I have two tables both have same schema, one will have previous day records other will have current. I want to compare both and find only changes or only rows that have different value in atleast one column.

How is this possible in pl/sql, oracle? (I did code something similar using checksum in T-SQL but not sure how to do in pl/sql)

flag

3 Answers

vote up 3 vote down check

This SO answer provides a very efficient solution using Oracle to compare the results of 2 queries: http://stackoverflow.com/questions/56895/proving-sql-query-equivalency/93489#93489

link|flag
thanks got more than what i wanted.. – Rahuls Oct 20 at 14:38
vote up 2 vote down

Hi Rahuls,

As Dougman posted one of the most efficient way to compare two data sets is to GROUP them. I usually use a query like this to compare two tables:

SELECT MIN(which), COUNT(*), pk, col1, col2, col3, col4
  FROM (SELECT 'old data' which, pk, col1, col2, col3, col4
           FROM t
         UNION ALL
         SELECT 'new data' which, pk, col1, col2, col3, col4 FROM t_new)
 GROUP BY pk, col1, col2, col3, col4
HAVING COUNT(*) != 2
 ORDER BY pk, MIN(which);
link|flag
thank you that works like a charm – Rahuls Oct 20 at 14:36
this is also a very efficient solution (cannot accept two answers :( ) – Rahuls Oct 20 at 14:38
vote up 2 vote down

You want an exclusive-difference query, which is is essentially an (A-B) U (B-A) query:

(SELECT * FROM TODAY_TABLE
MINUS
SELECT * FROM YESTERDAY_TABLE)
UNION ALL
(SELECT * FROM YESTERDAY_TABLE
MINUS
SELECT * FROM TODAY_TABLE)

This query can also be easily improved to also show which records are inserts, deletes, and changes using an additional calculated column.

link|flag
this also works great, but doughman and vincent gave more efficient solution – Rahuls Oct 20 at 14:20

Your Answer

Get an OpenID
or

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