package com.yihu.util.sqlServer2Oracle; public class MainApplication { public static void main(String[] args) throws Exception { String[] tables1 = {"OutPatient"}; String[] tables2 = {"Outpatient_Diag"}; String[] tables3 = {"Outpatient_Drug"}; String[] tables4 = {"Outpatient_Fee"}; String[] tables5 = {"Inpatient_Drug"}; String[] tables6 = {"Inpatient_Outdiag"}; String[] tables7 = {"Inpatient_Longorder"}; String[] tables8 = {"Inpatient_Fee"}; String[] tables9 = {"Eds_Disp_Pres_Master"}; MyThread myThread1 = new MyThread(tables1,"PK_Outpatient",22,100,67); MyThread myThread2 = new MyThread(tables2,"PK_Outpatient_Diag ",40,100,115); MyThread myThread3 = new MyThread(tables3,"PK_Outpatient_Drug",14,100,349); MyThread myThread4 = new MyThread(tables4,"PK_Outpatient_Fee",16,100,142); MyThread myThread5 = new MyThread(tables5,"PK_Inpatient_Drug",18,100,349); MyThread myThread6 = new MyThread(tables6,"PK_Inpatient_Outdiag",44,100,138); MyThread myThread7 = new MyThread(tables7,"PK_Inpatient_Longorder",18,100,41); MyThread myThread8 = new MyThread(tables8,"PK_Inpatient_Fee",18,100,123); MyThread myThread9 = new MyThread(tables9,"PK_Eds_Disp_Pres_Master",15,100,78); //�߳����� myThread1.start(); myThread2.start(); myThread3.start(); myThread4.start(); myThread5.start(); myThread6.start(); myThread7.start(); myThread8.start(); myThread9.start(); } }