我们有报告服务器(SSRS),它有近 100 多份报告。是否有任何可用的开源或付费工具可以提供以下提到的统计数据:
Reports By Execution Time (from Execution Log)
Top Reports
Slowest Reports
Reports by User
Optimization Analysis
问候
我们有报告服务器(SSRS),它有近 100 多份报告。是否有任何可用的开源或付费工具可以提供以下提到的统计数据:
Reports By Execution Time (from Execution Log)
Top Reports
Slowest Reports
Reports by User
Optimization Analysis
问候
这应该给你你正在寻找的东西:
SELECT CONVERT(nvarchar(10), ex.TimeStart, 101) AS [Run Date], cat.Name as [Report Name], ex.UserName, ex.Format, ex.TimeStart, ex.Parameters
FROM ExecutionLogStorage AS ex WITH(NOLOCK)
INNER JOIN
Catalog AS cat WITH(NOLOCK) ON ex.ReportID = cat.ItemID
ORDER BY [Run Date] Desc, [Report Name]