<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	
	>
<channel>
	<title>Comments on: SSRS Report Execution Statistics and Analysis</title>
	<atom:link href="http://thinknook.com/ssrs-report-execution-statistics-and-analysis-2011-11-13/feed/" rel="self" type="application/rss+xml" />
	<link>http://thinknook.com/ssrs-report-execution-statistics-and-analysis-2011-11-13/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ssrs-report-execution-statistics-and-analysis</link>
	<description>Because the world needs another Business Intelligence blog!</description>
	<lastBuildDate>Fri, 14 Sep 2018 19:30:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>https://wordpress.org/?v=4.1.41</generator>
	<item>
		<title>By: admin</title>
		<link>http://thinknook.com/ssrs-report-execution-statistics-and-analysis-2011-11-13/#comment-223</link>
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Thu, 19 Jan 2012 09:39:54 +0000</pubDate>
		<guid isPermaLink="false">http://thinknook.com/?p=205#comment-223</guid>
		<description><![CDATA[Thanks Mark, nice update.

I&#039;ll integrate your query with the Catalog table back into the original article, with the appropriate accreditation.

Cheers]]></description>
		<content:encoded><![CDATA[<p>Thanks Mark, nice update.</p>
<p>I&#8217;ll integrate your query with the Catalog table back into the original article, with the appropriate accreditation.</p>
<p>Cheers</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Mark Hudson from Sydney, AU</title>
		<link>http://thinknook.com/ssrs-report-execution-statistics-and-analysis-2011-11-13/#comment-222</link>
		<dc:creator><![CDATA[Mark Hudson from Sydney, AU]]></dc:creator>
		<pubDate>Thu, 19 Jan 2012 00:35:38 +0000</pubDate>
		<guid isPermaLink="false">http://thinknook.com/?p=205#comment-222</guid>
		<description><![CDATA[The Report NAME is contained in the Catalog table, along with other &quot;Items&quot; such as DataSources, Shared Datasets etc. 

Updated query:

SELECT 
     c.Name AS ReportName,
     CONVERT(nvarchar(1000),[Parameters]) as Parameters,
     MAX(CONVERT(date,[TimeStart])) as LastRun,
     AVG(TimeDataRetrieval)/1000 as AvgTimeDataRetrieval,
     AVG(TimeProcessing)/1000 as AvgTimeProcessing,
     AVG(TimeRendering)/1000 as AvgTimeRendering,
     AVG(TimeDataRetrieval + TimeProcessing + TimeRendering)/1000 as AvgTotalTime
     ,COUNT(*) as NumOfExecution
 FROM [ExecutionLogStorage] els
 INNER JOIN [Catalog]	c	ON els.ReportID=c.ItemID
 WHERE
     CONVERT(date,[TimeStart]) &gt;= &#039;20110101&#039;
 GROUP BY 
    c.Name,CONVERT(nvarchar(1000),[Parameters])
 ORDER BY  
     COUNT(*) DESC,
     AVG(TimeDataRetrieval + TimeProcessing + TimeRendering) DESC]]></description>
		<content:encoded><![CDATA[<p>The Report NAME is contained in the Catalog table, along with other &#8220;Items&#8221; such as DataSources, Shared Datasets etc. </p>
<p>Updated query:</p>
<p>SELECT<br />
     c.Name AS ReportName,<br />
     CONVERT(nvarchar(1000),[Parameters]) as Parameters,<br />
     MAX(CONVERT(date,[TimeStart])) as LastRun,<br />
     AVG(TimeDataRetrieval)/1000 as AvgTimeDataRetrieval,<br />
     AVG(TimeProcessing)/1000 as AvgTimeProcessing,<br />
     AVG(TimeRendering)/1000 as AvgTimeRendering,<br />
     AVG(TimeDataRetrieval + TimeProcessing + TimeRendering)/1000 as AvgTotalTime<br />
     ,COUNT(*) as NumOfExecution<br />
 FROM [ExecutionLogStorage] els<br />
 INNER JOIN [Catalog]	c	ON els.ReportID=c.ItemID<br />
 WHERE<br />
     CONVERT(date,[TimeStart]) &gt;= &#8216;20110101&#8217;<br />
 GROUP BY<br />
    c.Name,CONVERT(nvarchar(1000),[Parameters])<br />
 ORDER BY<br />
     COUNT(*) DESC,<br />
     AVG(TimeDataRetrieval + TimeProcessing + TimeRendering) DESC</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!--
Performance optimized by W3 Total Cache. Learn more: https://www.w3-edge.com/products/


Served from: thinknook.com @ 2026-04-16 12:49:54 by W3 Total Cache
-->