ほぼ 100 件以上のレポートを取得した Reporting Server (SSRS) を取得しました。以下の統計情報を提供できる、オープンソースまたは有料の利用可能なツールはありますか?
Reports By Execution Time (from Execution Log)
Top Reports
Slowest Reports
Reports by User
Optimization Analysis
よろしく
ほぼ 100 件以上のレポートを取得した Reporting Server (SSRS) を取得しました。以下の統計情報を提供できる、オープンソースまたは有料の利用可能なツールはありますか?
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]