Adaptations from Oracle to MySQL (5.4.1): * replace VARCHAR2 by VARCHAR. * replace NUMBER by INT or FLOAT. * CONSTRAINT [name] is allowed in MySQL only for PRIMARY KEY, UNIQUE, or FOREIGN KEY; thus NOT NULL constraints without naming. * Named constraints are not allowed in MySQL in the column definitions, bur only separately as table constraints. * OBJECTs and CREATE TYPE are not supported by MySQL. Thus, the definition of GeoCoord has been replaced by longitude and latitude. (-> modified also mondial-inputs.sql) * Note: FOREIGN KEY CONSTRAINTs are only evaluated if "InnoDB" is chosen as storage engine.