 




<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>SQL Server with Mr. Denny &#187; SSRS</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/sql-server/tag/ssrs/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/sql-server</link>
	<description></description>
	<lastBuildDate>Fri, 17 May 2013 17:04:01 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
		<item>
		<title>SSRS runs some crappy queries against the ReportServer Database</title>
		<link>http://itknowledgeexchange.techtarget.com/sql-server/ssrs-runs-some-crappy-queries-against-the-reportserver-database/</link>
		<comments>http://itknowledgeexchange.techtarget.com/sql-server/ssrs-runs-some-crappy-queries-against-the-reportserver-database/#comments</comments>
		<pubDate>Mon, 10 Oct 2011 14:00:04 +0000</pubDate>
		<dc:creator>Denny Cherry</dc:creator>
				<category><![CDATA[SQL PASS]]></category>
		<category><![CDATA[SQL PASS 2011]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SSRS]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/sql-server/ssrs-runs-some-crappy-queries-against-the-reportserver-database/</guid>
		<description><![CDATA[While doing some research for my Half Day SQL PASS Session with Stacia Misner (blog &#124; @staciamisner) I discovered that some of the queries which the SSRS engine runs against the ReportServer database are less than perfect total crap.  My specific problem is that there are key lookups on the bulk of the queries. Granted [...]]]></description>
				<content:encoded><![CDATA[<p>While doing some research for my Half Day SQL PASS Session with Stacia Misner (blog | @staciamisner) I discovered that some of the queries which the SSRS engine runs against the ReportServer database are less than perfect <span style="text-decoration: line-through">total crap</span>.  My specific problem is that there are key lookups on the bulk of the queries.</p>
<p>Granted most of the queries results are pretty small, but these queries run every 10 seconds, and crap running every 10 seconds adds up to a whole lot of crap.</p>
<p>Below are some indexes you can create to resolve these problems.  Keep in mind that adding this will probably make Microsoft not help you if you call, so be sure to delete the indexes if you call CSS for support.</p>
<p>These indexes will minimize the index scans and key lookups.  I can&#8217;t remove all of them because of the way that the queries and the schema are designed and I&#8217;m not about to go around changing the schema of the tables or hacking the inline code of the SSRS UI.  So while these indexes won&#8217;t fix every problem, some is better then none.</p>
<pre class="brush: sql; title: ; notranslate">CREATE NONCLUSTERED INDEX [mrdenny_IX_Notifications3] ON [dbo].[Notifications]
(
[NotificationEntered] ASC,
ProcessStart,
ProcessAfter
)
include (NotificationID)
GO
CREATE INDEX mrdenny_PK_Catalog on dbo.Catalog
(ItemID)
include (Path, Type, PolicyId)
GO
CREATE INDEX mrdenny_IX_Event_TimeEntered on dbo.Event
(ProcessStart, TimeEntered)
include (EventID)
GO
CREATE INDEX mrdenny_IX_BatchID on dbo.Event
(BatchID, TimeEntered)
include (EventID, EventType, EventData)
with (drop_existing=on)
GO
CREATE INDEX mrdenny_IX_UpgradeID on dbo.ServerUpgradeHistory
(UpgradeID DESC)
include (ServerVersion)
GO</pre>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/sql-server/ssrs-runs-some-crappy-queries-against-the-reportserver-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server 2008 R2 has been Released to Manufacturing</title>
		<link>http://itknowledgeexchange.techtarget.com/sql-server/sql-server-2008-r2-has-been-released-to-manufacturing/</link>
		<comments>http://itknowledgeexchange.techtarget.com/sql-server/sql-server-2008-r2-has-been-released-to-manufacturing/#comments</comments>
		<pubDate>Wed, 21 Apr 2010 15:09:45 +0000</pubDate>
		<dc:creator>Denny Cherry</dc:creator>
				<category><![CDATA[Powerpivot]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server 2008 R2]]></category>
		<category><![CDATA[SSRS]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/sql-server/?p=1100</guid>
		<description><![CDATA[Microsoft&#8217;s new database platform SQL Server 2008 R2 has gone RTM.  This means that the code has been locked, and shipped to the DVD pressing company so that they can begin pressing the DVDs. For those looking on MSDN or TechNet to download the RTM version, hold off.  The final version will be released to [...]]]></description>
				<content:encoded><![CDATA[<p>Microsoft&#8217;s new database platform SQL Server 2008 R2 has gone RTM.  This means that the code has been locked, and shipped to the DVD pressing company so that they can begin pressing the DVDs.</p>
<p>For those looking on MSDN or TechNet to download the RTM version, hold off.  The final version will be released to MSDN and TechNet on May 3rd, 2010 and to Microsoft Volume License customers on May 13th, 2010.</p>
<p>Some of the features you can look forward to in SQL Server 2008 R2 include:</p>
<ul>
<li>StreamInsight which provides you a low latency event processing system, which is designed to import data in near realtime.  StreamInsight is perfect for processing log files, or telephone call records which are contently processed into the platform.</li>
<li>Master Data Services allows you to build a single point which holds your business data from multiple applications into a single repository.</li>
<li>PowerPivot is probably the most talked about part of SQL Server 2008 R2 as this allows end users to enjoy the power of the SQL Server Analysis engine on their desktop so that they can create dynamic data applications where they can slice and dice the data any way they need to, without having to be connected to the SSAS instance.</li>
<li>SQL Server 2008 R2 now fully supports Live Migration and Virtualization  under Hyper-V.</li>
<li>You can run SQL Server 2008 R2 on some of the largest hardware  available, as SQL Server 2008 R2 supports 256 logical CPUs in a single  server (with the data center edition).</li>
</ul>
<p>If you are wondering if you have the RTM release of SQL Server 2008 R2, the build number for SQL Server 2008 R2 is 10.50.1600.1.  If you have another build then you don&#8217;t have the RTM release.</p>
<p>As part of the release announcement Dave Jones from the Mississippi Department of Transportation gave an overview of how MDoT uses SQL Server 2008 R2 as an early adopter using PowerPivot, Report Builder 3.0 and SSRS to meet internal needs on a highly available clustered install.</p>
<p>We also heard from Ron Van Vanten from Premier Bank Card who is the Directing Officer of Business Intelligence.  They manage over 40 TB of data under SQL Server, with a data warehouse which is over 20 TB in size.  They are over 150 instances of SQL Server hosting this data. Premier Bank Card is using the self service features of SQL Server 2008 R2 such as SSRS, Report Builder and PowerPivot to empower its business users to make better decisions while reducing overall costs.</p>
<p>The third customer that we heard from was Ayad Shammout of Care Group Systems.  Ayad talked a little bit about how PowerPivot was able to help their users quickly and easily learn how to analyze data without having to wait for IT resources.</p>
<p>The Parallel Scaleout Datawarehouse Edition has not gone RTM yet.  It has gone into a second RC build, and will be released later this year.</p>
<p>There are some major changes in what each edition supports with SQL Server 2008 R2.  Some of these include that Express supports 10 Gig databases.  The SQL Server 2008 R2 standard edition will now include backup compression saving customers from needing to purchase a third party solution to get the backup compression which was introduced in SQL Server 2008.</p>
<p>Be sure to check out the SQL Server 2008 R2 official launch site <a href="http://www.sqlserverlaunch.com/">http://www.sqlserverlaunch.com/</a>.</p>
<p>Denny</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/sql-server/sql-server-2008-r2-has-been-released-to-manufacturing/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>You can&#8217;t deploy a SQL 2008 SSRS Report to a SQL 2005 SSRS Server</title>
		<link>http://itknowledgeexchange.techtarget.com/sql-server/you-cant-deploy-a-sql-2008-ssrs-report-to-a-sql-2005-ssrs-server/</link>
		<comments>http://itknowledgeexchange.techtarget.com/sql-server/you-cant-deploy-a-sql-2008-ssrs-report-to-a-sql-2005-ssrs-server/#comments</comments>
		<pubDate>Mon, 28 Jul 2008 11:00:05 +0000</pubDate>
		<dc:creator>Denny Cherry</dc:creator>
				<category><![CDATA[RDL]]></category>
		<category><![CDATA[SQL Server 2005]]></category>
		<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[SSRS]]></category>

		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/sql-server/you-cant-deploy-a-sql-2008-ssrs-report-to-a-sql-2005-ssrs-server/</guid>
		<description><![CDATA[SQL 2008 and SQL 2005 use different RDL namespaces and so they pretty much aren&#8217;t compatible.  You can edit SQL 2005 Reports using the SQL 2008 editor, but new reports won&#8217;t be able to be deployed to the SQL 2005 report server. With enough major editing of the SQL 2008 report you can convert it [...]]]></description>
				<content:encoded><![CDATA[<p>SQL 2008 and SQL 2005 use different RDL namespaces and so they pretty much aren&#8217;t compatible.  You can edit SQL 2005 Reports using the SQL 2008 editor, but new reports won&#8217;t be able to be deployed to the SQL 2005 report server.</p>
<p>With enough major editing of the SQL 2008 report you can convert it to a SQL 2005 report.</p>
<p>In a future post (you can read this as, as soon as I figure out just what editing needs to be done) I&#8217;ll cover what editing needs to be done to the SQL 2008 RDL to make it run within a SQL 2005 Report server.</p>
<p>This is going to come in handy as you can&#8217;t have SQL 2005&#8242;s UI and SQL 2008&#8242;s UI installed on the same machine.</p>
<p>Denny</p>
<!-- wpms-network-global-inserts -->]]></content:encoded>
			<wfw:commentRss>http://itknowledgeexchange.techtarget.com/sql-server/you-cant-deploy-a-sql-2008-ssrs-report-to-a-sql-2005-ssrs-server/feed/</wfw:commentRss>
		<slash:comments>10</slash:comments>
		</item>
	</channel>
</rss>
