|
@ -6,26 +6,28 @@ import java.util.List;
|
|
|
public class MysqlToOracleApplication {
|
|
|
|
|
|
public static void main(String[] args) throws Exception {
|
|
|
TableInfo[] tables = {
|
|
|
new TableInfo("BaseInfo", "PK_BaseInfo", 0, 676400),
|
|
|
// new TableInfo("OutPatient", "PK_Outpatient", 210001, 566520),
|
|
|
// new TableInfo("Outpatient_Diag", "PK_Outpatient_Diag", 390001, 1147364),
|
|
|
// new TableInfo("Outpatient_Drug", "PK_Outpatient_Drug", 130001, 3486629),
|
|
|
// new TableInfo("Outpatient_Fee", "PK_Outpatient_Fee", 150001, 1417369),
|
|
|
// new TableInfo("Inpatient_Drug", "PK_Outpatient", 170001, 3605361),
|
|
|
// new TableInfo("Inpatient_Outdiag", "PK_Outpatient", 430001, 1374793),
|
|
|
// new TableInfo("Inpatient_Longorder", "PK_Outpatient", 170001, 406293),
|
|
|
// new TableInfo("Inpatient_Fee", "PK_Outpatient", 170001, 1417369),
|
|
|
// new TableInfo("Eds_Disp_Pres_Master", "PK_Outpatient", 140001, 770550)
|
|
|
TableInfo[] tables = {
|
|
|
new TableInfo("BaseInfo", "PK_BaseInfo", 0),
|
|
|
new TableInfo("OutPatient", "PK_Outpatient", 0),
|
|
|
// new TableInfo("Outpatient_Diag", "PK_Outpatient_Diag", 0),
|
|
|
// new TableInfo("Outpatient_Drug", "PK_Outpatient_Drug", 0),
|
|
|
// new TableInfo("Outpatient_Fee", "PK_Outpatient_Fee", 0),
|
|
|
new TableInfo("InPatient", "PK_Inpatient", 0),
|
|
|
// new TableInfo("Inpatient_Drug", "PK_Inpatient_Drug", 0),
|
|
|
// new TableInfo("Inpatient_Outdiag", "PK_Inpatient_Outdiag", 0),
|
|
|
// new TableInfo("Inpatient_Longorder", "PK_Inpatient_Longorder", 0),
|
|
|
// new TableInfo("Inpatient_Fee", "PK_Inpatient_Fee", 0),
|
|
|
// new TableInfo("Eds_Disp_Pres_Master", "PK_Eds_Disp_Pres_Master", 0)
|
|
|
};
|
|
|
|
|
|
List<MyThread> threadList = new ArrayList<>();
|
|
|
for (TableInfo table : tables) {
|
|
|
MyThread myThread = new MyThread(table.getTableName(), table.getPk(), table.getOffset(), 10000, table.getTotal());
|
|
|
MyThread myThread = new MyThread(table.getTableName(), table.getPk(), table.getOffset(), 10000);
|
|
|
threadList.add(myThread);
|
|
|
|
|
|
myThread.start();
|
|
|
}
|
|
|
|
|
|
}
|
|
|
}
|
|
|
|
|
|
}
|