<?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>Tech4Him - Technology with Integrity &#187; SQL Server Reporting Services</title>
	<atom:link href="http://blog.tech4him.com/tags/sql-server-reporting-services/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.tech4him.com</link>
	<description>A Christian technology chaos wrangler and his thoughts</description>
	<lastBuildDate>Fri, 27 Jan 2012 02:08:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Data validation for datetime parameters in SSRS</title>
		<link>http://blog.tech4him.com/2009/07/data-validation-for-datetime-parameters-in-ssrs/</link>
		<comments>http://blog.tech4him.com/2009/07/data-validation-for-datetime-parameters-in-ssrs/#comments</comments>
		<pubDate>Mon, 06 Jul 2009 23:15:26 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[SQL Server Reporting Services]]></category>
		<category><![CDATA[ssrs]]></category>

		<guid isPermaLink="false">http://blog.tech4him.com/?p=621</guid>
		<description><![CDATA[Data validation for datetime parameter in SSRS. Came across this piece of code for ensuring the end date comes after the start date.Â  Just what I was about to write...]]></description>
			<content:encoded><![CDATA[<p><a href="http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/3db067f2-628e-432d-aa25-f63b1ccb1dfa/"></a>Data validation for datetime parameter in SSRS.</p>
<p>Came across <a href="http://social.msdn.microsoft.com/Forums/en-US/sqlreportingservices/thread/3db067f2-628e-432d-aa25-f63b1ccb1dfa/">this piece of code</a> for ensuring the end date comes after the start date.Â  Just what I was about to write but a quick Google search saved a bit of time. Yay!<span id="more-621"></span></p>
<p>The function below checks for the Start and End date ranges .</p>
<p align="left"><strong>Function:</strong></p>
<pre>Function CheckDateParameters(StartDate as Date, EndDate as Date) as Integer
Dim msg as String
     msg = ""
     If (StartDate &gt; EndDate)  Then
        msg="Start Date should not be later than End Date"
     End If
     If msg &lt;&gt; "" Then
        MsgBox(msg, 16, "Report Validation")
        Err.Raise(6,Report)                    'Raise an overflow
     End If
End Function</pre>
<p align="left"><strong></strong></p>
<p align="left"><strong>Steps:</strong></p>
<p align="left">1.) Go the Report Parameters and add a parameterÂ with the datatype is string.</p>
<p align="left">2.) Check the Hidden checkbox and Allow blank value ckeckbox.</p>
<p align="left">3.) From Default ValuesÂ choose Non-Queried radio button andÂ then press the FX button and paste this code.</p>
<p>=CODE.CheckDateParameters(&lt;parameterStartdate&gt;.Value,&lt;parameterEnddate&gt;.Value)</p>
<p align="left">Then press OK.</p>
<p>Blessings.</p>
<img src="http://blog.tech4him.com/?ak_action=api_record_view&id=621&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.tech4him.com/2009/07/data-validation-for-datetime-parameters-in-ssrs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSRS 2008 Data Driven Subscriptions and Alerts</title>
		<link>http://blog.tech4him.com/2009/06/ssrs-2008-data-driven-subscriptions-and-alerts/</link>
		<comments>http://blog.tech4him.com/2009/06/ssrs-2008-data-driven-subscriptions-and-alerts/#comments</comments>
		<pubDate>Tue, 16 Jun 2009 13:12:05 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[alerts]]></category>
		<category><![CDATA[SQL Server Reporting Services]]></category>
		<category><![CDATA[ssrs]]></category>
		<category><![CDATA[SSRS 2008]]></category>
		<category><![CDATA[subscription]]></category>

		<guid isPermaLink="false">http://blog.tech4him.com/?p=618</guid>
		<description><![CDATA[A use case has been presented where users wish to receive email notification of certain records matching various criteria. Additionally, the notification subscription should only notify the user if records...]]></description>
			<content:encoded><![CDATA[<p>A use case has been presented where users wish to receive email notification of certain records matching various criteria. Additionally, the notification subscription should only notify the user if records exist matching the criteria. The notification via subscriptions should only happen once for any given record.<span id="more-618"></span></p>
<p>This use case is unique since the typical approach is to create a report with criteria parameters and then use a daily/weekly/etc timed subscription to run the report and email to the users. This methodology sends the report to the users even if no records match the actual report run-time criteria. Also, this may allow the report to keep a particular record in a report for as long as the record meets the criteria, and thus doe not fulfill the &#8220;one-time&#8221; only notification desired above.</p>
<p>To address this use case we are investigating the use of data driven subscriptions for a solution. The concept is to use a subscription history table that records all records for which notifications are sent to users. Additionally, the query driving the report will look at this table to determine if any new records match the other reporting criteria. If not, the email distribution will be nulled, to keep users from being notified of no matching records.</p>
<p>I would love to hear other suggestions on how to create this type of report notification/alerting. Again we want to send notification one-time per matching record, regardless if the record shows up multiple times in the raw report criteria results. And, we want nothing to be sent to the users if no matching records exist.</p>
<p>Blessings</p>
<img src="http://blog.tech4him.com/?ak_action=api_record_view&id=618&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.tech4him.com/2009/06/ssrs-2008-data-driven-subscriptions-and-alerts/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Charts, Running Totals and Time Series. Custom Code to the Rescue.</title>
		<link>http://blog.tech4him.com/2009/03/charts-running-totals-and-time-series-custom-code-to-the-rescue/</link>
		<comments>http://blog.tech4him.com/2009/03/charts-running-totals-and-time-series-custom-code-to-the-rescue/#comments</comments>
		<pubDate>Tue, 24 Mar 2009 22:43:52 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[chart]]></category>
		<category><![CDATA[datapoint]]></category>
		<category><![CDATA[dundas]]></category>
		<category><![CDATA[microsoft control]]></category>
		<category><![CDATA[SQL Server Reporting Services]]></category>
		<category><![CDATA[ssrs]]></category>
		<category><![CDATA[value expression]]></category>

		<guid isPermaLink="false">http://blog.tech4him.com/?p=430</guid>
		<description><![CDATA[While working with time series charts in SQL Server Reporting Services, I ran across a particular need to show cumulative aggregation of income over time by fiscal year. Yup, that&#8217;s...]]></description>
			<content:encoded><![CDATA[<p><a rel="external nofollow" href="http://www.flickr.com/photos/15332036@N00/233713534"><img class="alignright" style="border: 0pt none; margin: 8px;" src="http://farm1.static.flickr.com/89/233713534_f046bdeed5_m.jpg" border="0" alt="Run (final editing)" hspace="8" width="159" height="240" align="left" /></a>While working with time series charts in SQL Server Reporting Services, I ran across a particular need to show cumulative aggregation of income over time by fiscal year. Yup, that&#8217;s a mouthful eh? I initially thought great, I&#8217;ll just make the Y-axis value be the running total of the !Fields:Total.Value for the fiscal year series grouping using the RunningValue() function. This worked great with the exception of the current fiscal year.<span id="more-430"></span></p>
<p>So just to set the foundation for this scenario, we are using SSRS 2008. The chart is being created via Dundas Chart for Reporting Services, not the included Microsoft Chart control. Our Y value expression is:</p>
<pre>=RunningValue(Fields!Total.Value,sum,
"DundasChartControl1_DRG_PMTFiscalYear_agg")</pre>
<p><a href="http://blog.tech4him.com/wp-content/uploads/runningvalue_chart_problem.png"><img class="alignleft size-medium wp-image-432" title="RunningValue in a Time Series Problem" src="http://blog.tech4him.com/wp-content/uploads/runningvalue_chart_problem-300x154.png" alt="RunningValue in a Time Series Problem" width="300" height="154" /></a>As you can see in the chart to the left,Â  for the current fiscal year we are currently in March. There are still a number of months left in the fiscal year and in our dataset, there are no values for those future months. Unfortunately, using the RunningValues() function means the Y value just remains where it was for March through the rest of the fiscal year. Not the behavior we want.</p>
<p>What we are looking for is that if there is no value we do not want to show a line or marker. In the Dundas Chart properties you have the option to set how empty data points should be handled. We ensured that this was set to the &#8220;zero&#8221; setting rather than &#8220;average&#8221;. Of course this did not resolve our issue because the Y value is not empty as it contains the running value.Â  So how can we ensure that the empty datapoints are seen by the Dundas custom chart control in order to be properly handled? Custom code is the answer.</p>
<p>First we changed the Y value expression to simply be:</p>
<pre>=Sum(Fields!Total.Value)</pre>
<p>This sets each datapoint to the individual year/month income value rather than the RunningValue expression we were using. Next in the Advanced &#8211;&gt; View Code area we found and selected the PostApplySeriesData event. Finally we added custom code that modifies the Y value for the chart to essentially be the running total.</p>
<pre>' Parameter: chartObj - represents the chart object
' Parameter: series  - the series that is currently being populated
' Parameter: codeParams  - user defined code parameters

Dim runningTotal As Double = 0

For Each point As DataPoint In series.Points
  point.YValues(0) = point.YValues(0) + runningTotal
  runningTotal = point.YValues(0)
Next</pre>
<p><a href="http://blog.tech4him.com/wp-content/uploads/runningvalue_chart_fixed.png"><img class="alignleft size-medium wp-image-433" title="runningvalue_chart_fixed" src="http://blog.tech4him.com/wp-content/uploads/runningvalue_chart_fixed-300x155.png" alt="runningvalue_chart_fixed" width="300" height="155" /></a>Why does this work? It is actually quite simple.</p>
<p>At the time the series data is applied to the chart, the charting component is seeing the actual Y series datapoint value. For those future months, the datapoints are empty and the chart property for handling empty points works. After that is out of the way, we then come back and adjust the Y values for the existing datapoints. (Our empty datapoints aren&#8217;t there.)</p>
<p>Voila, our problem is fixed.</p>
<img src="http://blog.tech4him.com/?ak_action=api_record_view&id=430&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.tech4him.com/2009/03/charts-running-totals-and-time-series-custom-code-to-the-rescue/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>SQL Server Reporting Services Video Links</title>
		<link>http://blog.tech4him.com/2009/01/sql-server-reporting-services-video-links/</link>
		<comments>http://blog.tech4him.com/2009/01/sql-server-reporting-services-video-links/#comments</comments>
		<pubDate>Thu, 29 Jan 2009 11:00:29 +0000</pubDate>
		<dc:creator>Tom</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[microsoft]]></category>
		<category><![CDATA[SQL Server Reporting Services]]></category>
		<category><![CDATA[ssrs]]></category>
		<category><![CDATA[tutorial]]></category>

		<guid isPermaLink="false">http://blog.tech4him.com/?p=168</guid>
		<description><![CDATA[Are you new to SQL Server Reporting Services? Want to know some more before investing too much in additional training? Just plain curious? Below is a list of some of...]]></description>
			<content:encoded><![CDATA[<p><img class="alignright" style="border: 0pt none; margin-left: 8px; margin-right: 8px;" src="http://farm2.static.flickr.com/1214/1409545055_74b878ad8f_m.jpg" border="0" alt="HP ProLiant DL320 Server" hspace="8" width="240" height="180" align="left" />Are you new to SQL Server Reporting Services? Want to know some more before investing too much in additional training? Just plain curious?</p>
<p>Below is a list of some of the better video tutorials we&#8217;ve found on the web.</p>
<p><span id="more-168"></span></p>
<p><a href="http://msdn.microsoft.com/en-us/library/bb522859.aspx">Tutorials (Reporting Services)</a></p>
<blockquote><p>SQL Server 2008 Reporting Services (SSRS) includes the following report design tutorials to help you learn basic skills one step at a time.</p></blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/aa337436.aspx">Designing Ad Hoc Reports: Tutorials</a></p>
<blockquote><p>You can use the following tutorials to learn about ad hoc reporting features in Reporting Services. The tutorials can help you learn necessary skills for creating reports based on models.</p></blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/bb522684.aspx">Designing Report Models: Tutorials</a></p>
<blockquote><p>The tutorials can help you learn necessary skills for creating models that you can use in Report Builder or Report Model Query Designer.</p></blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/aa337423.aspx">Developer&#8217;s Guide: Tutorials (Reporting Services)</a></p>
<blockquote><p>Developer&#8217;s Guide: Tutorials (Reporting Services)</p></blockquote>
<p><a href="http://msdn.microsoft.com/en-us/library/aa337424.aspx">Tutorial: How to Locate and Start Reporting Services Tools</a></p>
<blockquote><p>This tutorial introduces the tools used to configure a report server, manage report server content and operations, and create and publish reports and report models. The purpose of this tutorial is to help new users understand how to find and open each tool.</p></blockquote>
<p><a href="http://download.microsoft.com/download/b/3/8/b3847275-2bea-440a-8e2e-305b009bb261/sql_10.wmv">SQL Server Express 2005 &#8211; Getting Started with Reporting Services</a></p>
<blockquote><p>This is a good intro albeit for SSRS 2005.</p></blockquote>
<p><a href="http://www.youtube.com/view_play_list?p=200A1E8FD236A8FE">YouTube &#8211; SQL Server Reporting Services Playlist.</a></p>
<blockquote><p>Great little playlist of some of the better SSRS videos on YouTube.</p></blockquote>
<img src="http://blog.tech4him.com/?ak_action=api_record_view&id=168&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.tech4him.com/2009/01/sql-server-reporting-services-video-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
<enclosure url="http://download.microsoft.com/download/b/3/8/b3847275-2bea-440a-8e2e-305b009bb261/sql_10.wmv" length="26725168" type="video/x-ms-wmv" />
		</item>
		<item>
		<title>SQL Server 2008 Tips and Tricks &#8211; Reporting Services MSDN Webcast Notes</title>
		<link>http://blog.tech4him.com/2008/11/sql-server-2008-tips-and-tricks-reporting-services-msdn-webcast-notes/</link>
		<comments>http://blog.tech4him.com/2008/11/sql-server-2008-tips-and-tricks-reporting-services-msdn-webcast-notes/#comments</comments>
		<pubDate>Wed, 19 Nov 2008 04:07:10 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[Links/Resources]]></category>
		<category><![CDATA[sql server 2008]]></category>
		<category><![CDATA[SQL Server Reporting Services]]></category>
		<category><![CDATA[ssrs]]></category>
		<category><![CDATA[SSRS 2008]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[The MSDN Webcast from September 8, 2008 is the third in a series entitled “SQL Server 2008 Tips &#038; Tricks” focuses on Reporting Services 2008.

Presentation and slide content by IT Mentors

1. SSRS 2008 Architecture/Runtime
2. Configuration
3. New Controls
  a. Tablix
  b. Gauges and Indicators
4. Deployment

### Benefits of Eliminating IIS from the SSRS Architecture
* Easier configuration
  * IIS settings for other applications impact SSRS
* Better resource management]]></description>
			<content:encoded><![CDATA[<p>The MSDN Webcast from September 8, 2008 is the third in a series entitled “SQL Server 2008 Tips &#038; Tricks” focuses on Reporting Services 2008.</p>
<p>Presentation and slide content by IT Mentors</p>
<p>1. SSRS 2008 Architecture/Runtime<br />
2. Configuration<br />
3. New Controls<br />
  a. Tablix<br />
  b. Gauges and Indicators<br />
4. Deployment</p>
<p>### Benefits of Eliminating IIS from the SSRS Architecture<br />
* Easier configuration<br />
  * IIS settings for other applications impact SSRS<br />
* Better resource management<br />
  * IIS designed for static or dynamic HTML pages, not report execution for large reports to many concurrent users.<br />
  * Memory management easier to implement outside of IIS<br />
* Consolidation of two services into one<br />
  * Communication process between services eliminated<br />
  * More efficient allocation of memory across server<br />
* Elimination of deployment obstacles<br />
  * SQL Server DBAs lacking IIS skills<br />
  * IT policies prevent IIS and SQL Server on same server</p>
<p>### Architecture<br />
* HTTP Listener<br />
  * Uses HTTP.SYS directly from the operating system<br />
  * Accepts requests directed to the configured URL and port<br />
* Authentication Layer<br />
  * Confirms identity associated with request<br />
  * Supports Windows, Basic, or anonymous Access with a custom authentication<br />
* Application Domains<br />
  * Provide a front-end component with Report Manager<br />
  * Process reports interactively with Report Server Web service<br />
  * Support scheduled operations with background processing<br />
* Application Domain Management<br />
  * Replaces IIS functionality</p>
<p>Notes: Speaker does not discuss the complications that running IIS and SSRS 2008 on the same server. Instead he talks about how they both can run on the same server. Might want to be sure you understand the complications that can arise from both on the same server, especially when it comes to SSL needs.</p>
<p>### Configuration<br />
* Memory Management<br />
* Disabling Features</p>
<p>Notes: Speaker states the obvious about the importance of these items. Disabling features = reducing surface area.</p>
<p>### Memory Management<br />
* Memory Broker monitors and responds to memory pressure fluctuations<br />
* Memory events trigger switch from RAM to file system cache as needed<br />
* Configurable thresholds determine report server response to memory pressure changes</p>
<p>Notes: Good simplistic explanation of these by the speaker. Might want to research a bit more if you really need to tweak memory optimization for peak performance.</p>
<p>* Low Memory Pressure<br />
  * Current requests continue<br />
  * New Requests accepted<br />
  * Background low priority<br />
* Medium Memory Pressure<br />
  * Current requests continue<br />
  * New requests _might_ be accepted<br />
  * Memory allocations reduced for all applications<br />
  * Background items get the largest reduction<br />
* High Memory Pressure<br />
  * Current requests continue<br />
  * No new requests accepted</p>
<p>Notes: Good explanation and slide for this concept.</p>
<p>### Configure Memory Settings</p>
<p>Notes: Speaker shows you the what to change in the config file but neglects to say which config files is being changed and where it is located. The correlating MSDN article on this topic is located here.</p>
<p>Information on the RSReportServer.config file can also be found on MSDN.</p>
<p>### Disabling Features<br />
* Report Manager<br />
  * RSReportServer.config<br />
    * IsReportManagerEnabled<br />
* On Demand Processing<br />
  * RSReportServer.config<br />
    * IsWebServiceEnabled<br />
* Scheduled Events and Report Delivery<br />
  * RSReportServer.config<br />
    * IsSchedulingService<br />
    * IsNotificationService<br />
    * IsEventService<br />
* Report Builder<br />
  * SQL Server Management Studio<br />
    * Server Properties<br />
* Report Server Windows Service<br />
  * SQL Server Configuration Manager</p>
<p>Notes: One might want to consider the “Why?” on each of these to determine appropriate use cases for enabling or disabling. Now the speaker shows where the config file is.</p>
<p>Demos were done for memory configuration settings and the Tablix control.</p>
<p>Lots of good gauges and indicators available thanks to the new Dundas obtained controls.</p>
<p>Finally discussion about the rs command line tool for deployment.</p>
<img src="http://blog.tech4him.com/?ak_action=api_record_view&id=39&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.tech4him.com/2008/11/sql-server-2008-tips-and-tricks-reporting-services-msdn-webcast-notes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Upgrading SQL Server Reporting Services Reports From 2005 to 2008</title>
		<link>http://blog.tech4him.com/2008/11/upgrading-sql-server-reporting-services-reports-from-2005-to-2008/</link>
		<comments>http://blog.tech4him.com/2008/11/upgrading-sql-server-reporting-services-reports-from-2005-to-2008/#comments</comments>
		<pubDate>Thu, 13 Nov 2008 01:11:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[General]]></category>
		<category><![CDATA[sql server]]></category>
		<category><![CDATA[sql server 2008]]></category>
		<category><![CDATA[SQL Server Reporting Services]]></category>
		<category><![CDATA[SSRS 2005]]></category>
		<category><![CDATA[SSRS 2008]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[We just ordered our licenses for SQL Server 2008 (various editions). :) Now it is time to get ready for the migration. While doing some research on the actual report .rdl upgrade process I figured I'd put my findings here.

The Performance Point Blog has <a href="http://performancepointblog.com/2008/09/reporting-services-2008-faqs/">this FAQ</a> that has a few good tidbits. The one that stuck out to me was the last one:

<blockquote><span style="font-size: 10pt;">"Q: I know that every once in a while, a 2005 report won’t auto-upgrade to]]></description>
			<content:encoded><![CDATA[<p>We just ordered our licenses for SQL Server 2008 (various editions). <img src='http://blog.tech4him.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Now it is time to get ready for the migration. While doing some research on the actual report .rdl upgrade process I figured I&#8217;d put my findings here.</p>
<p>The Performance Point Blog has <a href="http://performancepointblog.com/2008/09/reporting-services-2008-faqs/">this FAQ</a> that has a few good tidbits. The one that stuck out to me was the last one:</p>
<blockquote><p><span style="font-size: 10pt;">&#8220;Q: I know that every once in a while, a 2005 report won’t auto-upgrade to<br />
2008 successfully. How can I tell if a report I’m running is being rendered in 2005 or 2008 mode?</span><span style="font-size: 10pt;"></p>
<p>&nbsp;</span>
<p class="MsoNormal" style="margin: 0in 0in 0pt; line-height: normal;"><span style="font-size: 10pt;">A: We attempt to upgrade a 2005 report to 2008 once and only once. If the process fails the first time, we don’t try again. To see which engine is being used to render a report, use the new ExecutionLog2 view in the<br />
reportserver database, examine the AdditionalInfo column and check the &lt;ProcessingEngine&gt; element. A value of <strong style="">2 </strong>indicates the new 2008 “on demand” rendering engine was used, while a value of <strong style="">1</strong> means the older, 2005 engine was used.&#8221;</span></p>
</blockquote>
<p>Seems like a quick way of seeing which engine is being used when you first hit those reports after upgrading the server. Good stuff.</p>
<p>A brief take from <a href="http://blogs.msdn.com/cliffgreen/archive/2008/09/30/reporting-services-what-happens-when-i-upgrade.aspx">Cliff Nelson is here</a> referencing an internal discussion guided by <a href="http://blogs.msdn.com/robertbruckner/">Robert Bruckner</a>.</p>
<p>Oh, I have to say that I am very excited about the chart, graph and gauge controls, a la Dundas, that are included as part of SSRS 2008. Plus, there available for the <a href="http://blogs.msdn.com/robertbruckner/archive/2008/10/25/microsoft-chart-controls-for-net-framework-35.aspx">.Net framework 3.5 as standalone controls</a>. Yipee!</p>
<p>As we move further in this process I&#8217;ll post any important pieces here for my use and yours.</p>
<p>Blessings.</p>
<img src="http://blog.tech4him.com/?ak_action=api_record_view&id=34&type=feed" alt="" />]]></content:encoded>
			<wfw:commentRss>http://blog.tech4him.com/2008/11/upgrading-sql-server-reporting-services-reports-from-2005-to-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

