Forum Discussion

Anonymous's avatar
Anonymous
Not applicable
5 years ago
Solved

DAX Query Performance Issue Help

Hi Team,   Below is my DAX measure and its taking almost 26 sec to return the data, please help to optimize   MEASURE 'Cntrl ETLControlTable'[ShippedTenderedCountNew1] = (/* USER DAX BEGIN ...
  • bvilten's avatar
    5 years ago

    So we can't really tell much about the query structure with out the full picture of the server timing window. 

    how many SQL subclass are being generated?

    do you have CALLBACKS? etc
    from what I can see you are spending way too much time in the formula engine. How big and how many columns is the Inv_Fact_Inventory table? if it is large you could consider building a temp table on the fly with only the columns you need pulling in specific columns as necessary from related tables. then write your queries to hit that temp table.