stevebot
stevebot

Reputation: 24005

How to find long running queries?

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

Answers (1)

Piotr Sobiegraj
Piotr Sobiegraj

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

Related Questions