Groovy script error query threshold limit
Summary:
Hi experts,
I have written a groovy rule using flexibleDataGrid to export the dynamic calc Parent members plus all stored sparse members to a csv file . while executing got an error query threshold limit , please check the essbase.cfg . Below is the groovy code, what is the best way to export all stored members plus the dynamic calc using loop or hashmap or another other method
Our Cube size more than 10 GB
Cube cube = operation.application.getCube("xxxxx")
def dataGrid = cube.flexibleDataGridDefinitionBuilder()
dataGrid.setPovDimensions('Scenario', 'Version')
dataGrid.setPov('Actual', 'Working')
dataGrid.addColumn('&StYr','ILvl0Descendants(YearTotal)')dataGrid.addRow('IDescendants(AxXXSeries)','IDescendants(C100)','IDescendants(E_10)','IDescendants(T_ops)','IDescendants(Total_CostCenter)','IDescendants(OFS_Total Plan)')