<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" media="screen" href="/styles/xslt/rss.xslt"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd" xmlns:c9="http://channel9.msdn.com">
<channel>
	<title>Channel 9 - Discussions by Lunchy</title>
	<atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/Niners/Lunchy/Discussions/RSS"></atom:link>
	<image>
		<url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url>
		<title>Channel 9 - Discussions by Lunchy</title>
		<link>http://channel9.msdn.com/Niners/Lunchy/Discussions</link>
	</image>
	<description>Channel 9 keeps you up to date with the latest news and behind the scenes info from Microsoft that developers love to keep up with. From LINQ to SilverLight – Watch videos and hear about all the cool technologies coming and the people behind them.</description>
	<link>http://channel9.msdn.com/Niners/Lunchy/Discussions</link>
	<language>en</language>
	<pubDate>Sun, 26 May 2013 03:05:43 GMT</pubDate>
	<lastBuildDate>Sun, 26 May 2013 03:05:43 GMT</lastBuildDate>
	<generator>Rev9</generator>
	<c9:totalResults>0</c9:totalResults>
	<c9:pageCount>0</c9:pageCount>
	<c9:pageSize>0</c9:pageSize>
	<item>
		<title>Coffeehouse - Since we have so many Linux users in here: a nice converstion</title>
		<description><![CDATA[<p>I've been using Gentoo for around 4 years as my main OS and really love it.&nbsp; I've also given Ubuntu a look and found it to be a very nice distrobution.&nbsp; I also use straight debian at times, usually when I just need to get a bare bones server installed
 quickly for development work.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/Coffeehouse/253400-Since-we-have-so-many-Linux-users-in-here-a-nice-converstion/5c02b4dd0fcf4b4aa1779dec00680383#5c02b4dd0fcf4b4aa1779dec00680383</link>
		<pubDate>Fri, 23 Mar 2007 13:08:08 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/Coffeehouse/253400-Since-we-have-so-many-Linux-users-in-here-a-nice-converstion/5c02b4dd0fcf4b4aa1779dec00680383#5c02b4dd0fcf4b4aa1779dec00680383</guid>
		<dc:creator>Lunchy</dc:creator>
		<slash:comments>35</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Lunchy/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - vb.net &amp;amp; SSIS package execution</title>
		<description><![CDATA[<p>I'm not familiar with how to fire off a package from code.&nbsp; We just schedule our packages to run with SQL jobs.<br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/253346-vbnet-amp-SSIS-package-execution/6c968563b7114645beb59dea0154e242#6c968563b7114645beb59dea0154e242</link>
		<pubDate>Thu, 22 Mar 2007 18:37:27 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/253346-vbnet-amp-SSIS-package-execution/6c968563b7114645beb59dea0154e242#6c968563b7114645beb59dea0154e242</guid>
		<dc:creator>Lunchy</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Lunchy/Discussions/RSS</wfw:commentRss>
	</item>
	<item>
		<title>Tech Off - vb.net &amp;amp; SSIS package execution</title>
		<description><![CDATA[<p>When you're in the design view of your SSIS package you can right click in the designer window and click the &quot;Variables&quot; menu item.&nbsp; This should display the &quot;Variables&quot; tab where you can add variables to the DTS package.&nbsp; I will use the example of 'vDivisionID'
 which I have set to be an Int32<br>
<br>
Then you can go into the properties of the Script Task that you are working with, and you'll see &quot;ReadOnlyVariables&quot; and a &quot;ReadWriteVariables&quot; properites.&nbsp; You will need to enter a comma seperated list of the SSIS variables you want to access from the script
 in which ever of these two properties is appropriate.&nbsp; In my case I put 'vDivisionID' into the &quot;ReadOnlyVariables&quot; property.<br>
<br>
Then, once you're in the script editor ready to write the vb.net code, you can access these varaibles with the Dts.VariableDispenser class like this...<br>
<br>
&nbsp;&nbsp;&nbsp; Public Sub Main()<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dim variables As Variables<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dim DivisionID As String<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; If Dts.VariableDispenser.Contains(&quot;vDivisionID&quot;) = True Then<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; DivisionID = Dts.Variables(&quot;vDivisionID&quot;).Value.ToString<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Else<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dts.TaskResult = Dts.Results.Failure<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Exit Sub<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; End If<br>
<br>
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp; Dts.TaskResult = Dts.Results.Success<br>
&nbsp;&nbsp;&nbsp; End Sub<br>
<br>
I hope this helps and makes sense, I was in a rush while writing this. <img src='http://ecn.channel9.msdn.com/o9/content/images/emoticons/emotion-1.gif' alt='Smiley' /><br></p>]]></description>
		<link>http://channel9.msdn.com/Forums/TechOff/253346-vbnet-amp-SSIS-package-execution/26b2e3e5c7fe4804b4ec9dea0154e1f6#26b2e3e5c7fe4804b4ec9dea0154e1f6</link>
		<pubDate>Wed, 21 Mar 2007 17:15:54 GMT</pubDate>
		<guid isPermaLink="false">http://channel9.msdn.com/Forums/TechOff/253346-vbnet-amp-SSIS-package-execution/26b2e3e5c7fe4804b4ec9dea0154e1f6#26b2e3e5c7fe4804b4ec9dea0154e1f6</guid>
		<dc:creator>Lunchy</dc:creator>
		<slash:comments>4</slash:comments>
		<wfw:commentRss>http://channel9.msdn.com/Niners/Lunchy/Discussions/RSS</wfw:commentRss>
	</item>
</channel>
</rss>