Forum Discussion
Refresh error / Exceed maximum page size of the storage object (65528 bytes)
- 1 year ago
After extensive search, we came to the conclusion, that the dataset had too many columns. The number of rows wasn't an issue—it was all about the columns. This, combined with the architecture of the dataset, caused the problem.
We are loading multiple tables with this structure:
Row Nr. Item 01/31/2021 ..... 12/31/2045 1 Europe 0,05 ..... 2,5 2 Asia 2,5 ..... 2,6 .... .... .... ..... .... 10.000 NA 5,5 ..... 5,4
The dataset architecture used queries for each of these tables. In the second step, we merged all these queries into a master table and repivoted all the columns from the matrix format into one table with only four columns:Row Nr. Item Date Value 1 Europe 01/31/2021 0,05 .... .... .... .... 1 Europe 12/31/2045 2,5 .... .... .... .... When reloading the OLAP Cube, the error message popped up.
How did we fix the issue?
We repivoted each table before merging them into the master table. By doing this, we prevented the OLAP Cube from loading an excessive number of columns.An alternative, maybe easier approach is - if the multiple tables are being merged into one table and repivoted (like in the example above) - deactivating the single Tables/queries from being loaded into the dataset also helps. The data is still being considered in the master table, but the single Tables/queries are spared from entering the OLAP Cube.
Hope that helps someone.
Hi Theo_Westsite ,
Thank you lbendlin for the prompt response!
May I ask if you have gotten this issue resolved?
If it is solved, please mark the helpful reply or share your solution and accept it as solution, it will be helpful for other members of the community who have similar problems as yours to solve it faster.
Thank you.