<?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>SSIS Talk &#187; SSIS</title>
	<atom:link href="http://www.ssistalk.com/category/ssis/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ssistalk.com</link>
	<description>Random thoughts and experiences with SSIS, by Phil Brammer</description>
	<lastBuildDate>Wed, 01 Feb 2012 12:48:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>SSIS 2012 &#8211; SSIS Environment Variables String Limit</title>
		<link>http://www.ssistalk.com/2012/01/17/ssis-2012-ssis-environment-variables-string-limit/</link>
		<comments>http://www.ssistalk.com/2012/01/17/ssis-2012-ssis-environment-variables-string-limit/#comments</comments>
		<pubDate>Tue, 17 Jan 2012 23:26:19 +0000</pubDate>
		<dc:creator>Phil Brammer</dc:creator>
				<category><![CDATA[SQL Server 2012]]></category>
		<category><![CDATA[SSIS]]></category>

		<guid isPermaLink="false">http://www.ssistalk.com/?p=283</guid>
		<description><![CDATA[When creating environments in the new SSIS catalog, you are able to define environment variables.  When creating string variables, you are limited to a string length of 4,000 characters.  If you exceed 4,000 characters, you will receive an error.  Details below.
Environment variables can be created by right-clicking on the environment in question [...]]]></description>
			<content:encoded><![CDATA[<p>When creating environments in the new SSIS catalog, you are able to define environment variables.  When creating string variables, you are limited to a string length of 4,000 characters.  If you exceed 4,000 characters, you will receive an error.  Details below.</p>
<p>Environment variables can be created by right-clicking on the environment in question and selecting &#8220;Properties.&#8221;<br />
<img src="http://www.ssistalk.com/ssis_environment_var01.png" alt="SSIS Environment Properties" /></p>
<p>In the properties window, select &#8220;Variables&#8221; so that you can add new variables.<br />
<img src="http://www.ssistalk.com/ssis_environment_var02.png" alt="SSIS Environment Variable Properties Window" /></p>
<p>As long as you stay within the 4,000 character limit, you&#8217;ll be fine.  If you exceed that limit, expect an error message as below:<br />
<img src="http://www.ssistalk.com/ssis_environment_var03.png" alt="SSIS Environment Variables String Error" /></p>
<p>Clicking on the error message in the highlighted progress window, you can see the full details:<br />
<img src="http://www.ssistalk.com/ssis_environment_var04.png" alt="SSIS Environment Variables String Error Detail" /></p>
<p>Yep, internally, the SSIS team uses the sql_variant data type, which cannot store an NVARCHAR(MAX) column.  Since our string is longer than 4,000 characters (the max limit for NVARCHAR), the data type of the data we are sending must be converted to an NVARCHAR(MAX) which is an incompatible type for sql_variant.</p>
<p>The SSIS team is aware of this and hopefully they&#8217;ll be putting in a limit to prevent users from entering anything more than 4,000 characters to prevent the error from happening in the first place, or at least raising awareness of the limitation.</p>
<p>Also of a somewhat unrelated note &#8211; if you choose to set a variable to &#8220;sensitive&#8221; once you save it to the database by clicking the OK button, you will not be able to retrieve its value from within the GUI.  Just beware.  Treat the sensitive property as if you were working with passwords (which may be a common use of this property anyhow).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ssistalk.com/2012/01/17/ssis-2012-ssis-environment-variables-string-limit/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>SSIS &#8211; Export all SSIS packages from msdb</title>
		<link>http://www.ssistalk.com/2011/03/14/ssis-export-all-ssis-packages-from-msdb/</link>
		<comments>http://www.ssistalk.com/2011/03/14/ssis-export-all-ssis-packages-from-msdb/#comments</comments>
		<pubDate>Mon, 14 Mar 2011 22:02:36 +0000</pubDate>
		<dc:creator>Phil Brammer</dc:creator>
				<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[SSIS]]></category>
		<category><![CDATA[SSIS Data flow]]></category>

		<guid isPermaLink="false">http://www.ssistalk.com/?p=258</guid>
		<description><![CDATA[So, in response to Jamie Thomson&#8217;s article on extracting all SSIS packages from msdb, I also wanted to show how this can be done from within SSIS itself.  It&#8217;s very straightforward, and uses a data flow component you may not be familiar with: Export Column.

First, setup four package level variables:
FilePath &#8211; string
SSISFolderFilePath &#8211; string
SSISFolderName [...]]]></description>
			<content:encoded><![CDATA[<p>So, in response to Jamie Thomson&#8217;s <a href="http://sqlblog.com/blogs/jamie_thomson/archive/2011/02/02/export-all-ssis-packages-from-msdb-using-powershell.aspx">article</a> on extracting all SSIS packages from msdb, I also wanted to show how this can be done from within SSIS itself.  It&#8217;s very straightforward, and uses a data flow component you may not be familiar with: <a href="http://technet.microsoft.com/en-us/library/ms139818.aspx">Export Column</a>.</p>
<p><span id="more-258"></span></p>
<p>First, setup four package level variables:<br />
FilePath &#8211; string<br />
SSISFolderFilePath &#8211; string<br />
SSISFolderName &#8211; string<br />
SSISFolders &#8211; object</p>
<p><strong>FilePath</strong> should be set to the location where you want to store the packages.  Include the trailing slash, and ensure that the location exists.<br />
<strong>SSISFolderFilePath</strong> should be set to evaluate an expression (EvaluateAsExpression = TRUE), and its expression should be:<br />
@[User::FilePath] +  @[User::SSISFolderName]</p>
<p>Then create a connection manager object that points to your MSDB database where you want to extract from.  If you want this to be dynamic, perhaps to archive ALL SSIS packages in your company, then this could be made a dynamic connection manager object (by using expressions) and you iterate over each server.  For now, we&#8217;re only going to use one server.</p>
<p>Once these are setup, the rest is point and click, pretty much.  Add an Execute SQL Task to the control flow, and configure it so that it returns a full resultset.  See below.</p>
<p><img src="http://www.ssistalk.com/ssis_extractPackages001.png" alt="Execute SQL Task" /></p>
<p><img src="http://www.ssistalk.com/ssis_extractPackages002.png" alt="Execute SQL Task 2" /></p>
<p>The query for the Execute SQL Task is:<br />
<code>
<pre>
SELECT foldername
  FROM dbo.sysssispackagefolders folders
 WHERE EXISTS (SELECT NULL
                 FROM dbo.sysssispackages pkg
                WHERE pkg.folderid = folders.folderid)
</pre>
<p></code></p>
<p>*Note &#8211; the above SQL only assumes a flat directory structure.  If you have subdirectories in MSDB, you can use a recursive CTE to create a hierarchy resultset.</p>
<p>With the Execute SQL Task set up, you&#8217;ll have to <a href="http://consultingblogs.emc.com/jamiethomson/archive/2005/07/04/ssis-nugget_3a00_-execute-sql-task-into-an-object-variable-_2d00_-shred-it-with-a-foreach-loop.aspx">shred the results</a> using a Foreach Loop Container.  Inside the Foreach Loop Container, we will want to use a File System Task to create directories for our packages if they do not already exist.  The configuration for that is below:</p>
<p><img src="http://www.ssistalk.com/ssis_extractPackages003.png" alt="File System Task" /></p>
<p>Next, we have to create a data flow and attach it to the Foreach Loop Container.  The full control flow should resemble the next screenshot.</p>
<p><img src="http://www.ssistalk.com/ssis_extractPackages1.png" alt="Control Flow diagram" /></p>
<p>In the data flow, we have three components &#8211; OLE DB Source, Derived Column, and the Export Column transformation.  Connect the OLE DB source to your connection manager object, and use the following query against MSDB:<br />
<code>
<pre>
SELECT folder.foldername,
       pkg.name,
       pkg.packagedata
  FROM dbo.sysssispackages pkg
  JOIN dbo.sysssispackagefolders folder
    ON pkg.folderid = folder.folderid
</pre>
<p></code></p>
<p>Then, configure the Derived Column component so that it creates one new column, FullFilePath.  The following is the expression to use:<br />
<code>
<pre>
(DT_WSTR,500)(@[User::FilePath] + foldername + "\\" + name + ".dtsx")
</pre>
<p></code></p>
<p>Then configure the Export Column transformation as the following screenshot illustrates:</p>
<p><img src="http://www.ssistalk.com/ssis_extractPackages004.png" alt="Export Column configuration" /></p>
<p>The final data flow should look like the following:</p>
<p><img src="http://www.ssistalk.com/ssis_extractPackages005.png" alt="Data flow diagram" /></p>
<p>The only thing left to do is execute the package.  Navigate to the location defined by the FilePath package variable and you should see a directory structure resembling that in MSDB with all of the SSIS packages saved.</p>
<p><img src="http://www.ssistalk.com/ssis_extractPackages006.png" alt="File contents" /></p>
<p>If you wish to download the full SSIS package, here you go: <a href="http://www.ssistalk.com/ExportSSISPackages.dtsx">http://www.ssistalk.com/ExportSSISPackages.dtsx</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ssistalk.com/2011/03/14/ssis-export-all-ssis-packages-from-msdb/feed/</wfw:commentRss>
		<slash:comments>7</slash:comments>
		</item>
		<item>
		<title>SSIS &#8211; Feature Request: Snap-To Guides</title>
		<link>http://www.ssistalk.com/2011/02/17/ssis-feature-request-snap-to-guides/</link>
		<comments>http://www.ssistalk.com/2011/02/17/ssis-feature-request-snap-to-guides/#comments</comments>
		<pubDate>Thu, 17 Feb 2011 18:55:15 +0000</pubDate>
		<dc:creator>Phil Brammer</dc:creator>
				<category><![CDATA[SSIS]]></category>
		<category><![CDATA[SSIS Feature Request]]></category>

		<guid isPermaLink="false">http://www.ssistalk.com/?p=248</guid>
		<description><![CDATA[Have you ever designed an SSIS package and wished that you had easier layout tools?  Ever wanted the snap-to guides that allow you to position tasks/components in such a way that they align with existing tasks/components on the design surface?  
Here&#8217;s what I&#8217;m referring to (note the blue dashed line on the left):

Well, [...]]]></description>
			<content:encoded><![CDATA[<p>Have you ever designed an SSIS package and wished that you had easier layout tools?  Ever wanted the snap-to guides that allow you to position tasks/components in such a way that they align with existing tasks/components on the design surface?  </p>
<p>Here&#8217;s what I&#8217;m referring to (note the blue dashed line on the left):<br />
<img src="http://www.ssistalk.com/SSIS_SnapTo.png" alt="SSIS Snap-To Guide Lines" /></p>
<p>Well, now&#8217;s your chance &#8211; please <a href="https://connect.microsoft.com/SQLServer/feedback/details/644668/ssis-snap-to">vote</a> for <a href="http://sqlblog.com/blogs/jamie_thomson/">Jamie Thomson&#8217;s</a> suggestion to add this feature to SSIS.  While there, please be sure to leave feedback as to why you would like to see this included.</p>
<p>Vote here: <a href="https://connect.microsoft.com/SQLServer/feedback/details/644668/ssis-snap-to">https://connect.microsoft.com/SQLServer/feedback/details/644668/ssis-snap-to</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ssistalk.com/2011/02/17/ssis-feature-request-snap-to-guides/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>SQL Server Future &#8211; Code Name &#8220;Denali&#8221; CTP1 Now Available!</title>
		<link>http://www.ssistalk.com/2010/11/09/sql-server-future-code-name-denali-ctp1-now-available/</link>
		<comments>http://www.ssistalk.com/2010/11/09/sql-server-future-code-name-denali-ctp1-now-available/#comments</comments>
		<pubDate>Tue, 09 Nov 2010 19:06:24 +0000</pubDate>
		<dc:creator>Phil Brammer</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SSIS]]></category>

		<guid isPermaLink="false">http://www.ssistalk.com/?p=243</guid>
		<description><![CDATA[The first public CTP of the next major version of SQL Server is now available.  Go and get it, kick the tires, and let the team know about any bugs you may find.
Some of the immediate changes to highlight in CTP1 are: SSMS is now based on Visual Studio, sequence generators, several new DMV/DMFs [...]]]></description>
			<content:encoded><![CDATA[<p>The first public CTP of the next major version of SQL Server is now available.  Go and get it, kick the tires, and let the team know about any <a href="http://connect.microsoft.com/sqlserver/feedback">bugs</a> you may find.</p>
<p>Some of the immediate changes to highlight in CTP1 are: SSMS is now based on Visual Studio, sequence generators, several new DMV/DMFs (including one to investigate the resultset of a query/sproc without actually executing it), centralized SSIS management, SSIS changes, and others.  </p>
<p><a href="http://www.microsoft.com/Presspass/press/2010/nov10/11-09PASS10PR.mspx?rss_fdn=Press%20Releases">http://www.microsoft.com/Presspass/press/2010/nov10/11-09PASS10PR.mspx?rss_fdn=Press%20Releases</a></p>
<p>Stay tuned here for some highlights in Denali CTP1, especially around SSIS.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ssistalk.com/2010/11/09/sql-server-future-code-name-denali-ctp1-now-available/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SSIS 2008 &#8211; Cannot Show Visual Studio 2008 Tools for Applications error</title>
		<link>http://www.ssistalk.com/2010/05/28/ssis-2008-cannot-show-visual-studio-2008-tools-for-applications-error/</link>
		<comments>http://www.ssistalk.com/2010/05/28/ssis-2008-cannot-show-visual-studio-2008-tools-for-applications-error/#comments</comments>
		<pubDate>Fri, 28 May 2010 19:40:11 +0000</pubDate>
		<dc:creator>Phil Brammer</dc:creator>
				<category><![CDATA[SQL Server 2008]]></category>
		<category><![CDATA[SSIS]]></category>

		<guid isPermaLink="false">http://www.ssistalk.com/?p=236</guid>
		<description><![CDATA[Should you come across this error message, &#8220;cannot show visual studio 2008 tools for applications&#8221;, you may have to clean up your VSTA environment.
You may also have the following additional error message:
The System Cannot Find The File Specified 
Here&#8217;s how to fix it, thanks to Silviu Guea, Microsoft. 
Create a batch file with the following [...]]]></description>
			<content:encoded><![CDATA[<p>Should you come across this error message, &#8220;cannot show visual studio 2008 tools for applications&#8221;, you may have to clean up your VSTA environment.</p>
<p>You may also have the following additional error message:<br />
<em>The System Cannot Find The File Specified</em> </p>
<p>Here&#8217;s how to fix it, thanks to <a href="http://social.msdn.microsoft.com/Forums/en-US/sqlintegrationservices/thread/e5337b0c-7f70-4603-859e-fbc7d0cf1c37">Silviu Guea</a>, Microsoft. </p>
<p>Create a batch file with the following code.  Execute it.  Ignore any errors.  Try again.  If it doesn&#8217;t work, you may have to contact Microsoft support or try many uninstall/reinstall combinations.  For me, this worked the first time I tried it.  Finally, the code:</p>
<pre><code>
@rem start batch file
@rem delete the VSTA registry cache from the current user
REG DELETE HKCU\Software\Microsoft\VSTA /f
REG DELETE HKCU\Software\Microsoft\VSTAHost\SSIS_ScriptTask /f
REG DELETE HKCU\Software\Microsoft\VSTAHost\SSIS_ScriptComponent /f

@rem delete the VSTA registration cache for SSIS script task and data flow script component
REG DELETE HKLM\Software\Microsoft\VSTAHost\SSIS_ScriptTask /f
REG DELETE HKLM\Software\Microsoft\VSTAHost\SSIS_ScriptComponent /f

@rem delete the cached files from the HDD
rd /s /q "%AppData%\Microsoft\VSTA"
rd /s /q "%AppData%\Microsoft\VSTAHost\SSIS_ScriptTask"
rd /s /q "%AppData%\Microsoft\VSTAHost\SSIS_ScriptComponent"

rd /s /q "%USERPROFILE%\Local Settings\Application Data\VSTA"
rd /s /q "%USERPROFILE%\Local Settings\Application Data\VSTAHost\SSIS_ScriptTask"
rd /s /q "%USERPROFILE%\Local Settings\Application Data\VSTAHost\SSIS_ScriptComponent"

@rem re-generate the VSTA files for SSIS script task and component
"%ProgramFiles%\Microsoft Visual Studio 9.0\Common7\IDE\vsta.exe" /hostid SSIS_ScriptTask /setup
"%ProgramFiles%\Microsoft Visual Studio 9.0\Common7\IDE\vsta.exe" /hostid SSIS_ScriptComponent /setup

@rem end batch file
</code></pre>
<p>Download file here: <a href="http://www.ssistalk.com/vsta_cleanup.txt">vsta_cleanup.txt</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ssistalk.com/2010/05/28/ssis-2008-cannot-show-visual-studio-2008-tools-for-applications-error/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SSIS &#8211; Task and Component Naming Conventions</title>
		<link>http://www.ssistalk.com/2010/02/08/ssis-task-and-component-naming-conventions/</link>
		<comments>http://www.ssistalk.com/2010/02/08/ssis-task-and-component-naming-conventions/#comments</comments>
		<pubDate>Mon, 08 Feb 2010 16:05:28 +0000</pubDate>
		<dc:creator>Phil Brammer</dc:creator>
				<category><![CDATA[SSIS]]></category>

		<guid isPermaLink="false">http://www.ssistalk.com/?p=217</guid>
		<description><![CDATA[I&#8217;m reposting a list of task/component prefix naming conventions that Jamie Thomson posted some years back for SSIS.  Using a standard set of prefixes allows for easy log reading, better multi-developer support, and ease of readability.
Get the Excel document here: SSIS_Prefix_Naming.xlsx (11 KB)
Note that I have not updated this document for 2008 task/component changes, [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;m reposting a list of task/component prefix naming conventions that <a href="http://sqlblog.com/blogs/jamie_thomson/">Jamie Thomson</a> posted some years back for SSIS.  Using a standard set of prefixes allows for easy log reading, better multi-developer support, and ease of readability.</p>
<p>Get the Excel document here: <a href="http://www.ssistalk.com/SSIS_Prefix_Naming.xlsx">SSIS_Prefix_Naming.xlsx</a> (11 KB)</p>
<p>Note that I have not updated this document for 2008 task/component changes, and some of the abbreviations may have been changed from Jamie&#8217;s original list of suggestions to suit the needs of my organization at the time.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ssistalk.com/2010/02/08/ssis-task-and-component-naming-conventions/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>SSIS &#8211; Visio stencils for SSIS</title>
		<link>http://www.ssistalk.com/2010/02/03/ssis-visio-stencils-for-ssis/</link>
		<comments>http://www.ssistalk.com/2010/02/03/ssis-visio-stencils-for-ssis/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 21:16:20 +0000</pubDate>
		<dc:creator>Phil Brammer</dc:creator>
				<category><![CDATA[SSIS]]></category>

		<guid isPermaLink="false">http://www.ssistalk.com/?p=215</guid>
		<description><![CDATA[(Hmm, what is a retweet in blog terms?  This is a re-blog.)  Jamie Thomson has provided a post providing a link to download Microsoft Visio stencils for SSIS diagramming.  Get it here (Josh Robinson &#8211; original source) or here (Jamie Thomson).
]]></description>
			<content:encoded><![CDATA[<p>(Hmm, what is a retweet in blog terms?  This is a re-blog.)  Jamie Thomson has provided a <a href="http://sqlblog.com/blogs/jamie_thomson/archive/2010/02/03/visio-stencils-for-ssis.aspx">post</a> providing a link to download Microsoft Visio stencils for SSIS diagramming.  Get it <a href="http://joshrobi.blogspot.com/2008/08/useful-visio-stencil-set-for-sql-server.html">here</a> (Josh Robinson &#8211; original source) or <a href="http://cid-550f681dad532637.skydrive.live.com/self.aspx/Public/BlogShare/20100203/MS%20Visio%20SQL%202005%20Stencils.zip">here</a> (Jamie Thomson).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ssistalk.com/2010/02/03/ssis-visio-stencils-for-ssis/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SSIS &#8211; Organize the toolbox in BIDS</title>
		<link>http://www.ssistalk.com/2010/02/03/ssis-organize-the-toolbox-in-bids/</link>
		<comments>http://www.ssistalk.com/2010/02/03/ssis-organize-the-toolbox-in-bids/#comments</comments>
		<pubDate>Wed, 03 Feb 2010 16:12:55 +0000</pubDate>
		<dc:creator>Phil Brammer</dc:creator>
				<category><![CDATA[SSIS]]></category>

		<guid isPermaLink="false">http://www.ssistalk.com/?p=213</guid>
		<description><![CDATA[A quick tip for those that may want some better organization over the default provided by BIDS when working with SSIS packages.
You can add your own groupings to the Toolbox window by right-clicking anywhere in the toolbox, and selecting &#8220;Add Tab&#8221;.  
For example, in the data flow window, I can add a new tab [...]]]></description>
			<content:encoded><![CDATA[<p>A quick tip for those that may want some better organization over the default provided by BIDS when working with SSIS packages.</p>
<p>You can add your own groupings to the Toolbox window by right-clicking anywhere in the toolbox, and selecting &#8220;Add Tab&#8221;.  </p>
<p>For example, in the data flow window, I can add a new tab (or grouping) for Analysis Services Destination components.  </p>
<p>1) Right click on the toolbox background and select &#8220;Add Tab&#8221;</p>
<div class="wp-caption alignnone" style="width: 344px"><img alt="Add Tab" src="http://www.ssistalk.com/add_bids_group_1.png" title="Adding a Tab" width="334" height="442" /><p class="wp-caption-text">Add Tab</p></div>
<p>2) Give it a name.</p>
<div class="wp-caption alignnone" style="width: 257px"><img alt="Name Tab" src="http://www.ssistalk.com/add_bids_group_2.png" title="Name Tab" width="247" height="171" /><p class="wp-caption-text">Name Tab</p></div>
<p>3) Drag components to the new tab.</p>
<div class="wp-caption alignnone" style="width: 240px"><img alt="Dragging Components" src="http://www.ssistalk.com/add_bids_group_3.png" title="Dragging Components" width="230" height="172" /><p class="wp-caption-text">Dragging Components</p></div>
<p>4) Repeat as needed.</p>
<div class="wp-caption alignnone" style="width: 240px"><img alt="Repeat as needed" src="http://www.ssistalk.com/add_bids_group_4.png" title="Repeat as needed" width="230" height="180" /><p class="wp-caption-text">Repeat</p></div>
<p>The final results might look something like this:<br />
<div class="wp-caption alignnone" style="width: 238px"><img alt="Final Results" src="http://www.ssistalk.com/bids_groupings.png" title="Final Results" width="228" height="599" /><p class="wp-caption-text">Final Results</p></div></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ssistalk.com/2010/02/03/ssis-organize-the-toolbox-in-bids/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>SSIS &#8211; SSISTalk.com Content</title>
		<link>http://www.ssistalk.com/2010/01/28/ssis-ssistalkcom-content/</link>
		<comments>http://www.ssistalk.com/2010/01/28/ssis-ssistalkcom-content/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 22:01:03 +0000</pubDate>
		<dc:creator>Phil Brammer</dc:creator>
				<category><![CDATA[General]]></category>
		<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SSIS]]></category>

		<guid isPermaLink="false">http://www.ssistalk.com/?p=209</guid>
		<description><![CDATA[If you have something that you&#8217;d like to see blogged here regarding SSIS and/or SQL Server, please let me know and I&#8217;ll see what I can do.
Also, if you find a post here that you&#8217;re using to work on an issue in SSIS 2008, let me know if it isn&#8217;t working for you.  It [...]]]></description>
			<content:encoded><![CDATA[<p>If you have something that you&#8217;d like to see blogged here regarding SSIS and/or SQL Server, please let me know and I&#8217;ll see what I can do.</p>
<p>Also, if you find a post here that you&#8217;re using to work on an issue in SSIS 2008, let me know if it isn&#8217;t working for you.  It could be that I don&#8217;t have updated content for use in the SSIS 2008 environment.  It&#8217;s easy enough to update, I just won&#8217;t be able to catch all of the items listed here.</p>
<p>One last thing &#8211; the annual MVP Summit is coming up in February.  If you have something that you&#8217;d like for me to bring to the SSIS dev team in terms of feedback, feature requests, bugs, etc&#8230;, let me know and I&#8217;ll do my best to present them to the team.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ssistalk.com/2010/01/28/ssis-ssistalkcom-content/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>SSIS &#8211; Feature Request: Option to mark connection managers read-only</title>
		<link>http://www.ssistalk.com/2010/01/19/ssis-feature-request-option-to-mark-connection-managers-read-only/</link>
		<comments>http://www.ssistalk.com/2010/01/19/ssis-feature-request-option-to-mark-connection-managers-read-only/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 20:39:35 +0000</pubDate>
		<dc:creator>Phil Brammer</dc:creator>
				<category><![CDATA[SSIS]]></category>
		<category><![CDATA[SSIS Feature Request]]></category>

		<guid isPermaLink="false">http://www.ssistalk.com/?p=200</guid>
		<description><![CDATA[Today I had a situation come up that prompted a SQL Server Connect feature request submission for SSIS: add the ability to mark a connection manager object as read-only.  In doing so, the connection manager would not show in dataflow destinations, it would throw a warning if added to an OLE DB Command component, [...]]]></description>
			<content:encoded><![CDATA[<p>Today I had a situation come up that prompted a <a href="https://connect.microsoft.com/SQLServer/feedback">SQL Server Connect</a> feature request submission for SSIS: add the ability to mark a connection manager object as read-only.  In doing so, the connection manager would not show in dataflow destinations, it would throw a warning if added to an OLE DB Command component, would error in package validation if used in a destination (which could happen post-development via config files), etc&#8230;</p>
<p>What do you think?  Is this something you could see value in having implemented?</p>
<p>Connect submission: <a href="https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=525805">https://connect.microsoft.com/SQLServer/feedback/ViewFeedback.aspx?FeedbackID=525805</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ssistalk.com/2010/01/19/ssis-feature-request-option-to-mark-connection-managers-read-only/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

