<?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: Easy multi-value parameters in SQL Server Reporting Services</title>
	<atom:link href="http://www.duttonsoftware.com/2008/09/25/easy-multi-value-parameters-in-sql-server-reporting-services/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.duttonsoftware.com/2008/09/25/easy-multi-value-parameters-in-sql-server-reporting-services/</link>
	<description>Code, plug-ins &#38; more</description>
	<lastBuildDate>Fri, 06 Aug 2010 13:13:29 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
	<item>
		<title>By: David</title>
		<link>http://www.duttonsoftware.com/2008/09/25/easy-multi-value-parameters-in-sql-server-reporting-services/comment-page-1/#comment-188</link>
		<dc:creator>David</dc:creator>
		<pubDate>Fri, 06 Aug 2010 13:13:29 +0000</pubDate>
		<guid isPermaLink="false">http://www.duttonsoftware.com/?p=19#comment-188</guid>
		<description>Merci énormément pour cette petite explication. Cela est plus que pratique.

Merci encore.</description>
		<content:encoded><![CDATA[<p>Merci énormément pour cette petite explication. Cela est plus que pratique.</p>
<p>Merci encore.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: bILL</title>
		<link>http://www.duttonsoftware.com/2008/09/25/easy-multi-value-parameters-in-sql-server-reporting-services/comment-page-1/#comment-186</link>
		<dc:creator>bILL</dc:creator>
		<pubDate>Tue, 27 Jul 2010 08:10:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.duttonsoftware.com/?p=19#comment-186</guid>
		<description>This one did it for me:

Just use a where clause like
“WHERE TerritoryID IN (@TerritoryID)”</description>
		<content:encoded><![CDATA[<p>This one did it for me:</p>
<p>Just use a where clause like<br />
“WHERE TerritoryID IN (@TerritoryID)”</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: localhost</title>
		<link>http://www.duttonsoftware.com/2008/09/25/easy-multi-value-parameters-in-sql-server-reporting-services/comment-page-1/#comment-183</link>
		<dc:creator>localhost</dc:creator>
		<pubDate>Thu, 22 Jul 2010 21:25:33 +0000</pubDate>
		<guid isPermaLink="false">http://www.duttonsoftware.com/?p=19#comment-183</guid>
		<description>Thank you!  This helped me quite a bit.</description>
		<content:encoded><![CDATA[<p>Thank you!  This helped me quite a bit.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sijoy Jose</title>
		<link>http://www.duttonsoftware.com/2008/09/25/easy-multi-value-parameters-in-sql-server-reporting-services/comment-page-1/#comment-182</link>
		<dc:creator>Sijoy Jose</dc:creator>
		<pubDate>Sat, 12 Jun 2010 22:43:18 +0000</pubDate>
		<guid isPermaLink="false">http://www.duttonsoftware.com/?p=19#comment-182</guid>
		<description>Aaron,
Thank you for the tip. I found it very helpful. I have been searching this multivalued parameter option for some time. 

Jaap,

As you suggested, the named parameter option will have much performance aspect. But, I was struggling as my ODBC connection not supporting the named parameter (“WHERE TerritoryID IN (@TerritoryID)”) possibility.
So, I guess, this is the only one option left for me.
Please suggest, if you have any more updates on this!</description>
		<content:encoded><![CDATA[<p>Aaron,<br />
Thank you for the tip. I found it very helpful. I have been searching this multivalued parameter option for some time. </p>
<p>Jaap,</p>
<p>As you suggested, the named parameter option will have much performance aspect. But, I was struggling as my ODBC connection not supporting the named parameter (“WHERE TerritoryID IN (@TerritoryID)”) possibility.<br />
So, I guess, this is the only one option left for me.<br />
Please suggest, if you have any more updates on this!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron</title>
		<link>http://www.duttonsoftware.com/2008/09/25/easy-multi-value-parameters-in-sql-server-reporting-services/comment-page-1/#comment-166</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Mon, 22 Feb 2010 17:41:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.duttonsoftware.com/?p=19#comment-166</guid>
		<description>I totally agree on performance, but in some cases you cannot modify the SQL and are stuck with the above.  In my case, I was not using SQL as a datasource and thus was unable to create a query with an IN clause.  I used SQL for the example because everyone is familiar with it.</description>
		<content:encoded><![CDATA[<p>I totally agree on performance, but in some cases you cannot modify the SQL and are stuck with the above.  In my case, I was not using SQL as a datasource and thus was unable to create a query with an IN clause.  I used SQL for the example because everyone is familiar with it.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jaap</title>
		<link>http://www.duttonsoftware.com/2008/09/25/easy-multi-value-parameters-in-sql-server-reporting-services/comment-page-1/#comment-165</link>
		<dc:creator>Jaap</dc:creator>
		<pubDate>Mon, 22 Feb 2010 17:21:34 +0000</pubDate>
		<guid isPermaLink="false">http://www.duttonsoftware.com/?p=19#comment-165</guid>
		<description>Doing the filering in the dataset is just as easy as filtering the data afterwards and gives much better performance

Just use a where clause like 
&quot;WHERE TerritoryID IN (@TerritoryID)&quot;

SQL sever will read the multi value parameter @territoryID as a comma seperated list of values.</description>
		<content:encoded><![CDATA[<p>Doing the filering in the dataset is just as easy as filtering the data afterwards and gives much better performance</p>
<p>Just use a where clause like<br />
&#8220;WHERE TerritoryID IN (@TerritoryID)&#8221;</p>
<p>SQL sever will read the multi value parameter @territoryID as a comma seperated list of values.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Willem</title>
		<link>http://www.duttonsoftware.com/2008/09/25/easy-multi-value-parameters-in-sql-server-reporting-services/comment-page-1/#comment-149</link>
		<dc:creator>Willem</dc:creator>
		<pubDate>Tue, 10 Nov 2009 14:44:14 +0000</pubDate>
		<guid isPermaLink="false">http://www.duttonsoftware.com/?p=19#comment-149</guid>
		<description>Thanks,

Simple and fast solution for us guys new to reporting services world.</description>
		<content:encoded><![CDATA[<p>Thanks,</p>
<p>Simple and fast solution for us guys new to reporting services world.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Don</title>
		<link>http://www.duttonsoftware.com/2008/09/25/easy-multi-value-parameters-in-sql-server-reporting-services/comment-page-1/#comment-126</link>
		<dc:creator>Don</dc:creator>
		<pubDate>Fri, 08 May 2009 18:40:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.duttonsoftware.com/?p=19#comment-126</guid>
		<description>Thanks.  I was having a brain freeze and glad I founds this.  The advantage to filtering it on the table level is that if you the user changes parameters and re-generates the report, it is very fast since it already has the dataset.

don</description>
		<content:encoded><![CDATA[<p>Thanks.  I was having a brain freeze and glad I founds this.  The advantage to filtering it on the table level is that if you the user changes parameters and re-generates the report, it is very fast since it already has the dataset.</p>
<p>don</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aaron</title>
		<link>http://www.duttonsoftware.com/2008/09/25/easy-multi-value-parameters-in-sql-server-reporting-services/comment-page-1/#comment-117</link>
		<dc:creator>Aaron</dc:creator>
		<pubDate>Fri, 05 Dec 2008 07:40:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.duttonsoftware.com/?p=19#comment-117</guid>
		<description>I&#039;ve added a related follow-up article on &lt;a href=&quot;http://www.duttonsoftware.com/2008/12/05/non-queried-multi-value-parameters-in-sql-server-reporting-services/&quot; rel=&quot;nofollow&quot;&gt;Non-queried multi-value parameters&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>I&#8217;ve added a related follow-up article on <a href="http://www.duttonsoftware.com/2008/12/05/non-queried-multi-value-parameters-in-sql-server-reporting-services/" rel="nofollow">Non-queried multi-value parameters</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Srinivas</title>
		<link>http://www.duttonsoftware.com/2008/09/25/easy-multi-value-parameters-in-sql-server-reporting-services/comment-page-1/#comment-106</link>
		<dc:creator>Srinivas</dc:creator>
		<pubDate>Fri, 21 Nov 2008 11:43:52 +0000</pubDate>
		<guid isPermaLink="false">http://www.duttonsoftware.com/?p=19#comment-106</guid>
		<description>Thanks, and Greate work you have done, this article helped me lot</description>
		<content:encoded><![CDATA[<p>Thanks, and Greate work you have done, this article helped me lot</p>
]]></content:encoded>
	</item>
</channel>
</rss>
