Hi Guys,
The following query is trying to retrive data from a Oracle cube.I am not very much aware of the cubes.Can someone help in explaining what does mean
in the following query,
Thanks for help
Regards,
Sabarish
The following query is trying to retrive data from a Oracle cube.I am not very much aware of the cubes.Can someone help in explaining what does mean
Code:
MODEL
DIMENSION BY (
DIM_TEMPS)
MEASURES (
Code:
SELECT "DIM_TEMPS",
"DIM_TEMPS_H_SEMAINE_PRNT",
"DIM_TEMPS_445_ANNEE"
FROM table(OLAP_TABLE('GOLD_BI duration session',
'',
'',
'&(DIM_TEMPS_LIMITMAP)'))
MODEL
DIMENSION BY (
DIM_TEMPS)
MEASURES (
DIM_TEMPS_H_SEMAINE_PRNT,
DIM_TEMPS_445_ANNEE ) RULES UPDATE SEQUENTIAL ORDER();
Regards,
Sabarish