I have two tables with same %rowtype. They're about 1.3 million rows each.
I want to return into a third table the column name, and the data that is different (comparison). I don't want to have to loop through each column on each table so I created a minus scenario that returns rows on each table that have been updated, actually, that are different in comparison. From that I want to go through and return only changed values and column names.
This is going to be a fairly complex query. I'm working on a good solution, but want to know if anybody's done this before or knows of a good source for running comparisons of large data that returns non-numeric values?
Thank you.
I want to return into a third table the column name, and the data that is different (comparison). I don't want to have to loop through each column on each table so I created a minus scenario that returns rows on each table that have been updated, actually, that are different in comparison. From that I want to go through and return only changed values and column names.
This is going to be a fairly complex query. I'm working on a good solution, but want to know if anybody's done this before or knows of a good source for running comparisons of large data that returns non-numeric values?
Thank you.