Problem
Need to make sure that two datasets are the same. One traditional way to compare them is importing their data into an Excel spreadsheet. Then one can use Excel function to find the difference.
Better Solution
Oracle provides MINUS operator, which can subtract second dataset from first dataset. For example:
Select * From […]