Hurricane766
IS-IT--Management
Hi,
I have an old table with lots of data in it. I've moved this data to new table(s) (new schema). I have reports that expect to see the old table so I've created views that select from the new table but the views are exactly like the old table.
So here's my question:
After I've moved the data from the old table to the new one, I would like to check to make sure that the rows in the view are exactly the same as the rows in the old table. What's the easiest way of doing this (I'm dreading writing out all of the "old.col1 = view.col1 and old.col2 = view.col2...."
So basically is there a good way of doing rowwise comparision for all columns between two tables?
Thanks
I have an old table with lots of data in it. I've moved this data to new table(s) (new schema). I have reports that expect to see the old table so I've created views that select from the new table but the views are exactly like the old table.
So here's my question:
After I've moved the data from the old table to the new one, I would like to check to make sure that the rows in the view are exactly the same as the rows in the old table. What's the easiest way of doing this (I'm dreading writing out all of the "old.col1 = view.col1 and old.col2 = view.col2...."
So basically is there a good way of doing rowwise comparision for all columns between two tables?
Thanks