Formula Cache is not being shared across different users
hi all,
i have cube in there calculated measure below mdx
aggregate((
null:linkmember(closingperiod([date].[calendar hierarchy].[date]),[dimeffectivebegindate].[calendar hierarchy]),
linkmember(openingperiod([date].[calendar hierarchy].[date]),[dimeffectiveenddate].[calendar hierarchy]):null,
root([date])
)
,[measures].[product key distinct count]
)
we have fact table has 70 millions data ,and run our etl daily there <200k rows added our system. above query performing very complex filters , took around 20 mins complex queries . make query faster thought of implementing cache warming , surprised on process of implementation.
the formula engine cache not being shared across users when run same query,every user able use cache data when had run query though excel .but not able use one user's cache across users when run same query.
can 1 suggest how on come ?. want implement cache warming queries faster.
SQL Server > SQL Server Analysis Services
Comments
Post a Comment