It is possible in SQL Server Analysis to define Pre Calculated AVG measure?
Because If you are defining AVG measure for Calculated member then your report performance will down, so I need Pre Calculated AVG measure.
let me know anybody know any solution?
Dinesh Patel
You may want to read this:
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=548837&SiteID=1
Also, I think you can get SSAS 2005 to cache results when using MDX scripts to define calculations.
The following example for the use of CACHE function is listed on MSDN:
Scope (Customers.Geography.USA);
Sales = 1.1 * (Sales, Time.Year.PrevMember);
Cache (Sales, Time.Year);
End Scope;
No comments:
Post a Comment