This might sound a bit silly, but how about a simple program which just reads both databases and compares the data?
You could write a class containing all the data from one row, override equals() and hashCode(), then read both tables and compare them using the created class.
public class MyRow {
int someVal;
String someOtherVal;
// etc
public boolean equals(Object obj) {} // implement this
public int hashCode(){} // implement this
}
Then in your program:
List<MyRow> mysqlRows = readMysql();
List<MyRow> oracleRows = readOracleRows();
for (MyRow mysqlRow : mysqlRows) {
if (!mysqlRow.equals(oracleRows.get(index)) {
// log error
}
}
Of course, you might want to consider reading the tables a row at a time, if the amount of rows is massive and memory usage is an issue.