<?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>Ralf Eisenreich &#187; ssrs</title>
	<atom:link href="http://sqlblog.de/blog/tag/ssrs/feed/" rel="self" type="application/rss+xml" />
	<link>http://sqlblog.de/blog</link>
	<description>SQLBlog.DE &#124; ..things to remember</description>
	<lastBuildDate>Mon, 26 Dec 2011 14:37:28 +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>SSRS: Add Excel Export Link to Report</title>
		<link>http://sqlblog.de/blog/2009/10/ssrs-add-excel-export-link-to-report/</link>
		<comments>http://sqlblog.de/blog/2009/10/ssrs-add-excel-export-link-to-report/#comments</comments>
		<pubDate>Wed, 28 Oct 2009 14:45:08 +0000</pubDate>
		<dc:creator>Ralf</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[ssrs]]></category>

		<guid isPermaLink="false">http://sqlblog.de/blog/?p=689</guid>
		<description><![CDATA[How to add a Excel Export Link to a Report Add an item (e.g. TextBox, Image, etc.) and open the...]]></description>
			<content:encoded><![CDATA[<p><strong>How to add a Excel Export Link to a Report</strong><br />
Add an item (e.g. TextBox, Image, etc.) and open the <em>properties dialog</em>. Under the <em>navigation tab</em> use the setting <em>Go to URL</em> and add following comand.</p>
<p><code><br />
=Globals!ReportServerUrl.ToString() + "/Pages/ReportViewer.aspx?"<br />
+ System.Web.HttpUtility.UrlEncode("https://ReportServer/ReportFolder/Report.rdl")<br />
+ "&#038;rs:Command=Render&#038;rs:Format=EXCEL&#038;rc:OmitFormulas=true"<br />
+ "&#038;[Parameter_Name1]=" + Join(Parameters![Parameter_Name1].Value, "&#038;[Parameter_Name1]=") --> Multivalue Parameter<br />
+ "&#038;[Parameter_Name2]=" + System.Web.HttpUtility.UrlEncode(Parameters![Parameter_Name2].Value) --> Normaler Paraemter<br />
</code></p>
<p>It is important to use the <em>HttpUtility.UrlEncode()</em> function in order to pass the correct values.<br />
In the properties dialog of the report add a reference to the <em>System.Web</em> assembly.</p>
]]></content:encoded>
			<wfw:commentRss>http://sqlblog.de/blog/2009/10/ssrs-add-excel-export-link-to-report/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSRS: Disable Reporting Services Cache in Preview Mode</title>
		<link>http://sqlblog.de/blog/2008/12/ssrs-disable-reporting-services-cache-in-preview-mode/</link>
		<comments>http://sqlblog.de/blog/2008/12/ssrs-disable-reporting-services-cache-in-preview-mode/#comments</comments>
		<pubDate>Mon, 08 Dec 2008 14:40:21 +0000</pubDate>
		<dc:creator>Ralf</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[ssrs]]></category>

		<guid isPermaLink="false">http://sqlblog.de/blog/?p=382</guid>
		<description><![CDATA[How to disable caching in SQL Server Reporting Services for Visual Studio in Preview Mode? SQL Server 2005 Service Pack...]]></description>
			<content:encoded><![CDATA[<p>How to disable caching in SQL Server Reporting Services for Visual Studio in Preview Mode?</p>
<p>SQL Server 2005 Service Pack 1 brings a new feature: caching data in BIDS (Business Intelligence Development Studio) Report Designer. Following objects are cached: all the data query, parameter value and  credentials for previewing a report. Sometimes this feature can be annoying, if changes in preview mode should be visible immediately.</p>
<p>In order to disable the caching feature, following key has to be added to the config file &#8216;<code>RSReportDesigner.config</code>&#8216;.</p>
<p>Key:<br />
<code>&lt;Add Key="CacheDataForPreview" value="False" /&gt;</code></p>
<p>Location:<br />
<code>C:\Program Files\Microsoft Visual Studio 8\Common7\IDE\PrivateAssemblies\RSReportDesigner.config</code><br />
To clear the cache you can also delete the *.data cache file which is located in the report RDL directory.</p>
<div id="attachment_383" class="wp-caption alignnone" style="width: 164px"><img class="size-full wp-image-383" title="ssrs_data_files" src="http://sqlblog.de/blog/wp-content/uploads/2008/12/ssrs_data_files.png" alt="SSRS: Caching Files (Preview Mode)" width="154" height="146" /><p class="wp-caption-text">SSRS: Caching Files (Preview Mode)</p></div>
]]></content:encoded>
			<wfw:commentRss>http://sqlblog.de/blog/2008/12/ssrs-disable-reporting-services-cache-in-preview-mode/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>ReportViewer: Pass Parameters to Remote Report</title>
		<link>http://sqlblog.de/blog/2008/08/reportviewer-pass-parameters-to-remote-report/</link>
		<comments>http://sqlblog.de/blog/2008/08/reportviewer-pass-parameters-to-remote-report/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 07:13:30 +0000</pubDate>
		<dc:creator>Ralf</dc:creator>
				<category><![CDATA[.Net]]></category>
		<category><![CDATA[ASP.Net]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[ssrs]]></category>

		<guid isPermaLink="false">http://sqlblog.de/blog/?p=367</guid>
		<description><![CDATA[How to pass parameters to ReportViewer Control displaying a remote report (SSRS): ReportParameter[] parameters = new ReportParameter[2]; protected void Page_Load(object...]]></description>
			<content:encoded><![CDATA[<p>How to pass parameters to ReportViewer Control displaying a remote report (SSRS):</p>
<p><code>ReportParameter[] parameters = new ReportParameter[2];</code></p>
<p><code>protected void Page_Load(object sender, EventArgs e) {<br />
    parameters[0] = new ReportParameter("wave_id", "28");<br />
    parameters[1] = new ReportParameter("mpc_id", "1530");<br />
    ReportViewer1.ServerReport.SetParameters(parameters);<br />
}</code></p>
]]></content:encoded>
			<wfw:commentRss>http://sqlblog.de/blog/2008/08/reportviewer-pass-parameters-to-remote-report/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

