| mSQL | Oracle |
|---|---|
create table foo( anInt int, aString char(20))\g | CREATE TABLE FOO( ANINT INT, ASTRING VARCHAR2(20)); |
#file myDataFile.ctl, an oracle sqllload control file load data infile 'myDataFile' badfile 'example.bad' discardfile 'example.dsc' discardmax 999 append into table myTable fields terminated by ',' optionally enclosed by "'" (myField1,myField2,myField3,myField4)