Reputation: 24005
We are using SSAS and MOLAP. In SQL land, I know ways to query to get the longest running queries (see this SO question). It would be nice if we could do the same for our cube, get a list of long running MDX queries. Is this possible and what would this query look like?
Upvotes: 3
Views: 1626
Reputation: 1783
You can use SQL Server Profiler to monitor SSAS performance. According to MSDN you can e.g. Monitor the performance of an instance of Analysis Services and Identify MDX statements that run slowly.
Here is some additional resources:
Upvotes: 2