Hello. I can not understand how to approach the training task. There is a task:
Create a data analysis system using
Oracle Express, consisting of a multidimensional database, loading procedures and a user application.For dimensions, determine the list of hierarchies and levels of detail. For indicators - a list of measurements by which it is indexed, as well as the division of measurements into dense and sparse.
Multidimensional database should contain 2-3 indicators, indexed by 4-6 measurements each. Based on the MDB, create a custom application consisting of 4-5 reports of various types.
I understand that you need to do this:
- Install
Oracle Express(is this ?) Come up with a structure (OLAP-cube). For example, such ( star ):

Create ordinary relational database
CREATE TABLE ... ALTER TABLE ... CREATE SEQUENCE ...And fill with, let's say
INSERT INTOThere will be a normal relational base.
Then create an application, for example, in Java + JDBC (the only thing I had to deal with). The application will show summary tables for several indicators.
Do I understand the task correctly? Or should this cube be created somehow differently? The following part of the task is still not clear:
Multidimensional database should contain 2-3 indicators, indexed by 4-6 measurements each.
In the picture example we have 4 dimensions, right? And what is there an indicator? One last thing: what is the boot procedure?

