<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
		>
<channel>
	<title>Comments on: Using SSIS Package Configuration Values as Parameters to SQL Tasks</title>
	<atom:link href="http://arcanecode.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/feed/" rel="self" type="application/rss+xml" />
	<link>http://arcanecode.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/</link>
	<description>Making Microsoft .Net Development Magical</description>
	<lastBuildDate>Tue, 07 Feb 2012 16:57:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: SSIS Package Deployment &#171; Sladescross&#039;s Blog</title>
		<link>http://arcanecode.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/#comment-30394</link>
		<dc:creator><![CDATA[SSIS Package Deployment &#171; Sladescross&#039;s Blog]]></dc:creator>
		<pubDate>Sun, 05 Feb 2012 18:44:58 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/#comment-30394</guid>
		<description><![CDATA[[...] http://arcanecode.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/ [...]]]></description>
		<content:encoded><![CDATA[<p>[...] <a href="http://arcanecode.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/" rel="nofollow">http://arcanecode.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/</a> [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Larry</title>
		<link>http://arcanecode.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/#comment-27485</link>
		<dc:creator><![CDATA[Larry]]></dc:creator>
		<pubDate>Tue, 09 Feb 2010 21:33:39 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/#comment-27485</guid>
		<description><![CDATA[Geez - found the problem!  Let this be a valuable lesson for everyone out there!

The problem turned out to be nothing more than the wrong collation for the fields in the config file on SQL Server.

Try to find that solution in the literature out there!]]></description>
		<content:encoded><![CDATA[<p>Geez &#8211; found the problem!  Let this be a valuable lesson for everyone out there!</p>
<p>The problem turned out to be nothing more than the wrong collation for the fields in the config file on SQL Server.</p>
<p>Try to find that solution in the literature out there!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Larry</title>
		<link>http://arcanecode.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/#comment-27482</link>
		<dc:creator><![CDATA[Larry]]></dc:creator>
		<pubDate>Mon, 08 Feb 2010 20:50:48 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/#comment-27482</guid>
		<description><![CDATA[Is there any possible way to map a variable from your package configuration to your SSIS package??  I&#039;m just trying to open a particular flat file whose folder and file name are stored in my package config.  The folder is easy using the Foreach Loop container, but how do you specify the file name that&#039;s stored in my package config?  There seems to be no mechanism of just filtering out a file variable without hard-coding it in the package.]]></description>
		<content:encoded><![CDATA[<p>Is there any possible way to map a variable from your package configuration to your SSIS package??  I&#8217;m just trying to open a particular flat file whose folder and file name are stored in my package config.  The folder is easy using the Foreach Loop container, but how do you specify the file name that&#8217;s stored in my package config?  There seems to be no mechanism of just filtering out a file variable without hard-coding it in the package.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: arcanecode</title>
		<link>http://arcanecode.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/#comment-27426</link>
		<dc:creator><![CDATA[arcanecode]]></dc:creator>
		<pubDate>Wed, 06 Jan 2010 06:54:21 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/#comment-27426</guid>
		<description><![CDATA[Sheway - not sure where you are getting xml.config from? Didn&#039;t mention it in this post so I&#039;m a bit confused.

Richard not quite sure I understand your issue either. If you are pulling data but need to use a parameter as part of your source query there&#039;s no easy way to do it as you would with a execute sql task. I would let the DataReader Source be a variable, in the variable put your SELECT statement. Then at run time use a Scripting task (at the control level, not the data flow level) to alter the value of the variable and add a WHERE to the end of your SELECT with the needed parameters.]]></description>
		<content:encoded><![CDATA[<p>Sheway &#8211; not sure where you are getting xml.config from? Didn&#8217;t mention it in this post so I&#8217;m a bit confused.</p>
<p>Richard not quite sure I understand your issue either. If you are pulling data but need to use a parameter as part of your source query there&#8217;s no easy way to do it as you would with a execute sql task. I would let the DataReader Source be a variable, in the variable put your SELECT statement. Then at run time use a Scripting task (at the control level, not the data flow level) to alter the value of the variable and add a WHERE to the end of your SELECT with the needed parameters.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard Paredes</title>
		<link>http://arcanecode.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/#comment-27425</link>
		<dc:creator><![CDATA[Richard Paredes]]></dc:creator>
		<pubDate>Wed, 06 Jan 2010 02:19:48 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/#comment-27425</guid>
		<description><![CDATA[I have created a SSIS ODBC Relativity accessed through COBOL tables where I use the DataReader Source to get the data from COBOL using the query requires a parameter but when I try to map the variable is not my choice, help me, please]]></description>
		<content:encoded><![CDATA[<p>I have created a SSIS ODBC Relativity accessed through COBOL tables where I use the DataReader Source to get the data from COBOL using the query requires a parameter but when I try to map the variable is not my choice, help me, please</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sheway</title>
		<link>http://arcanecode.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/#comment-27381</link>
		<dc:creator><![CDATA[Sheway]]></dc:creator>
		<pubDate>Thu, 31 Dec 2009 11:05:21 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/#comment-27381</guid>
		<description><![CDATA[I m clear on that we have to create xml.config file or it will automatically gets created cz when we need to specify path and xml file name m nt able to go further . Please help me on this.]]></description>
		<content:encoded><![CDATA[<p>I m clear on that we have to create xml.config file or it will automatically gets created cz when we need to specify path and xml file name m nt able to go further . Please help me on this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Catto</title>
		<link>http://arcanecode.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/#comment-27195</link>
		<dc:creator><![CDATA[Catto]]></dc:creator>
		<pubDate>Tue, 03 Nov 2009 17:53:52 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/#comment-27195</guid>
		<description><![CDATA[Hey Now Robert Arcancode,

Just heard your great email on DNR regarding SSIS &amp; .NET. Also I&quot;ve enjoyed your blog for some time now with a mix of technology &amp; people posts. 

Thx 4 the info,
Catto]]></description>
		<content:encoded><![CDATA[<p>Hey Now Robert Arcancode,</p>
<p>Just heard your great email on DNR regarding SSIS &amp; .NET. Also I&#8221;ve enjoyed your blog for some time now with a mix of technology &amp; people posts. </p>
<p>Thx 4 the info,<br />
Catto</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Log Buffer #165: a Carnival of the Vanities for DBAs &#124; Pythian Group Blog</title>
		<link>http://arcanecode.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/#comment-27104</link>
		<dc:creator><![CDATA[Log Buffer #165: a Carnival of the Vanities for DBAs &#124; Pythian Group Blog]]></dc:creator>
		<pubDate>Fri, 09 Oct 2009 16:56:19 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/#comment-27104</guid>
		<description><![CDATA[[...] Arcane Code, Robert C. Cain shares his HOWTO on using SSIS package configuration values as parameters to SQL tasks. He begins, &#8220;Last weekend I presented at SQL Saturday in Redmond WA. One attendee asked if it [...]]]></description>
		<content:encoded><![CDATA[<p>[...] Arcane Code, Robert C. Cain shares his HOWTO on using SSIS package configuration values as parameters to SQL tasks. He begins, &#8220;Last weekend I presented at SQL Saturday in Redmond WA. One attendee asked if it [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TimCost</title>
		<link>http://arcanecode.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/#comment-27093</link>
		<dc:creator><![CDATA[TimCost]]></dc:creator>
		<pubDate>Wed, 07 Oct 2009 14:32:16 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2009/10/06/using-ssis-package-configuration-values-as-parameters-to-sql-tasks/#comment-27093</guid>
		<description><![CDATA[Great post!  I&#039;ve been trying to move the parts of my packages that require manual editing to config files, but had never considered using this technique to feed parameterized queries (at least those that don&#039;t get values dynamically).    This will become a part of my sop going forward.]]></description>
		<content:encoded><![CDATA[<p>Great post!  I&#8217;ve been trying to move the parts of my packages that require manual editing to config files, but had never considered using this technique to feed parameterized queries (at least those that don&#8217;t get values dynamically).    This will become a part of my sop going forward.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

