Hi!
I have an issue with the data showed in the OLAP Cube.
I have clicked in the reload schema button but the data isn't refresh.
The cube should show info about some months loaded in the DB.
mysql> select distinct(MES) from c_intentos_cobro;
+------+
| MES |
+------+
| 02 |
| 03 |
| 04 |
| 05 |
| 06 |
| 08 |
| 09 |
+------+
The cube only shows info about month 09:

Below is The mdxquery:

MDX Query:
SELECT
{[Measures].[TOTAL COBRADO],
[Measures].[CANT COBROS]}
ON COLUMNS,
Hierarchize(
Union
(
Union
({[d_fecha].[FECHA]}, [d_fecha].[FECHA].Children), [d_fecha].[2018].Children))
ON ROWS
FROM
[CUBO_INTENTOS_COBRO]
And the business model seems to be ok:

Please I need to know where is the cache configuration to understand what is wrong with the cube.
Thanks in advance.