OracleDataWarehouse dw = new OracleDataWarehouse("SIMONE","DW_2");
dw.loadObject(connection);
//create oracle dimension
RelationalTable timeDimension = new RelationalTable("TIMEDIMENSIONTEST");
timeDimension.loadObject(connection);
OracleLevel yearLevel = new OracleLevel("YEAR 3",timeDimension,"YEAR");
yearLevel.setDescription("the year of shipment");
OracleLevel monthLevel = new OracleLevel("MONTH 3",timeDimension,"MONTH");
monthLevel.setDescription("the month of shipment");