<?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</title>
	<atom:link href="http://www.ssistalk.com/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>Fri, 28 May 2010 20:23:19 +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>Blog Update &#8211; Mobile version of ssistalk.com now active!</title>
		<link>http://www.ssistalk.com/2010/05/28/blog-update-mobile-version-of-ssistalk-com-now-active/</link>
		<comments>http://www.ssistalk.com/2010/05/28/blog-update-mobile-version-of-ssistalk-com-now-active/#comments</comments>
		<pubDate>Fri, 28 May 2010 20:23:19 +0000</pubDate>
		<dc:creator>Phil Brammer</dc:creator>
				<category><![CDATA[General]]></category>

		<guid isPermaLink="false">http://www.ssistalk.com/?p=240</guid>
		<description><![CDATA[For those of you that wished this site was accessible on mobile clients, this request is now complete.  The site will detect that you are browing with a mobile client and present you automatically with a format suited for your device.  Please let me know if you run into issues.
Also, when viewing the [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you that wished this site was accessible on mobile clients, this request is now complete.  The site will detect that you are browing with a mobile client and present you automatically with a format suited for your device.  Please let me know if you run into issues.</p>
<p>Also, when viewing the mobile version, at the bottom of the page is an option to switch back to the full site (see the switch titled &#8220;Mobile Theme&#8221;).  Enjoy.</p>
<p><img alt="Switch Moble Version Image" src="http://www.ssistalk.com/ssistalk_mobile_switch.jpg" title="Switch Moble Version Image" class="alignnone" width="320" height="480" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ssistalk.com/2010/05/28/blog-update-mobile-version-of-ssistalk-com-now-active/feed/</wfw:commentRss>
		<slash:comments>2</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>Be careful with sp_configure</title>
		<link>http://www.ssistalk.com/2010/05/24/be-careful-with-sp_configure/</link>
		<comments>http://www.ssistalk.com/2010/05/24/be-careful-with-sp_configure/#comments</comments>
		<pubDate>Mon, 24 May 2010 14:50:44 +0000</pubDate>
		<dc:creator>Phil Brammer</dc:creator>
				<category><![CDATA[SQL Server]]></category>
		<category><![CDATA[SQL Server 2005]]></category>
		<category><![CDATA[SQL Server 2008]]></category>

		<guid isPermaLink="false">http://www.ssistalk.com/?p=234</guid>
		<description><![CDATA[For those of you that work extensively with sys.dm_exec_query_stats and associated plan cache DMVs, be aware that altering the server&#8217;s &#8216;max degree of parallelism&#8217; setting will flush the query plan cache.
You may see this message in your server&#8217;s SQL Log file:
&#8220;SQL Server has encountered 1 occurrence(s) of cachestore flush for the &#8216;SQL Plans&#8217; cachestore (part [...]]]></description>
			<content:encoded><![CDATA[<p>For those of you that work extensively with sys.dm_exec_query_stats and associated plan cache DMVs, be aware that altering the server&#8217;s &#8216;max degree of parallelism&#8217; setting will flush the query plan cache.</p>
<p>You may see this message in your server&#8217;s SQL Log file:<br />
&#8220;SQL Server has encountered 1 occurrence(s) of cachestore flush for the &#8216;SQL Plans&#8217; cachestore (part of plan cache) due to some database maintenance or reconfigure operations.&#8221;</p>
<p>In the case of MAXDOP changing, if you look before the above event happened, you should see that MAXDOP was changed and hence caused the flush.</p>
<p>This makes sense.  If you are changing the MAXDOP setting, all current query plans are worthless as they&#8217;re out of date with respect to this parameter.  Some plans may now be able to benefit from parallelism, whereas before they could not.  Or if constraining MAXDOP, some parallel plans may not be able to work anymore.  (Or some combination thereof.)  The easiest way to rectify this issue is to simply flush the plan cache and let all plans recompile at their next execution.</p>
<p>A common situation for changing MAXDOP could be for maintenance operations, where during normal operations MAXDOP is constrained to 1, yet while doing weekly work during a maintenance window the DBAs may elect to set MAXDOP to 0 (unrestricted).  </p>
<p>So, when you&#8217;re scratching your head wondering where your plan cache went, it could be due to administrative tasks.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.ssistalk.com/2010/05/24/be-careful-with-sp_configure/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server 2005 &#8211; How to introduce data corruption without trying</title>
		<link>http://www.ssistalk.com/2010/05/04/sql-server-2005-how-to-introduce-data-corruption-without-trying/</link>
		<comments>http://www.ssistalk.com/2010/05/04/sql-server-2005-how-to-introduce-data-corruption-without-trying/#comments</comments>
		<pubDate>Tue, 04 May 2010 20:51:17 +0000</pubDate>
		<dc:creator>Phil Brammer</dc:creator>
				<category><![CDATA[SQL Server 2005]]></category>

		<guid isPermaLink="false">http://www.ssistalk.com/?p=227</guid>
		<description><![CDATA[It is quite easy in SQL Server 2005 to accidentally (or intentionally, I suppose) create data corruption.  It&#8217;s best to just show via a demo, so here you go:
(Ref: http://www.sqlservercentral.com/Forums/Topic915058-2669-1.aspx.  Thanks, Paul White, for doing all of the work for this post.   )

-- In SQL Server 2005 only

-- fails
select round(0.5,0) 

-- [...]]]></description>
			<content:encoded><![CDATA[<p>It is quite easy in SQL Server 2005 to accidentally (or intentionally, I suppose) create data corruption.  It&#8217;s best to just show via a demo, so here you go:</p>
<p>(Ref: <a href="http://www.sqlservercentral.com/Forums/Topic915058-2669-1.aspx">http://www.sqlservercentral.com/Forums/Topic915058-2669-1.aspx</a>.  Thanks, Paul White, for doing all of the work for this post. <img src='http://www.ssistalk.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  )</p>
<pre><code>
-- In SQL Server 2005 only

-- fails
select round(0.5,0) 

-- 0.5 is cast as a numeric(1,1), which is used as the output type as well.
-- Since 0.5 rounds up to 1.0, this value is larger than a numeric(1,1) can store,
-- which is 0.9

-- works!
select round(0.5,0) as rnd
  into testround

-- view metadata of 'testround'
sp_help testround  

-- Observe that the 'rnd' column is defined as a numeric(1,1),
-- which technically means 0.9 is the max value

-- Now let's view the record:
select *
  from testround

-- WHAT?!  "Arithmetic Overflow"?  But, but, but the insert worked

-- Hmm, does this work? (Yes)
select cast(rnd as numeric(2,1)) as rnd
  from testround

-- Well, let's see what's going on here:

DBCC CHECKTABLE('testround') -- also catchable via DBCC CHECKDB, but not
                             -- with PHYSICAL_ONLY

/*
DBCC results for 'testround'.
Msg 2570, Level 16, State 3, Line 1
Page (1:1811349), slot 0 in object ID 2099048, index ID 0,
partition ID 72057594063028224, alloc unit ID 72057594096123904 (type
"In-row data"). Column "rnd" value is out of range for data type "numeric".
Update column to a legal value.
There are 1 rows in 2 pages for object "testround".
CHECKTABLE found 0 allocation errors and 1 consistency errors in table
'testround' (object ID 2099048).
DBCC execution completed. If DBCC printed error messages, contact your
system administrator.
*/

-- Okay, now let's see what's *REALLY* going on
DBCC TRACEON(3604)
GO

declare @db int
declare @filenumber int
declare @pagenumber int
set @db = db_id()
set @filenumber = 1       -- From DBCC output, adjust accordingly: Page (1:1811349)
set @pagenumber = 1811349 -- From DBCC output, adjust accordingly: Page (1:1811349)

DBCC PAGE(@db, @filenumber, @pagenumber, 3); -- 3 == full detail with ascii output 

-- Find the entry for slot 0 (according to the DBCC output above), note the out of range
-- value: "rnd = 1.0"

/*
Slot 0 Offset 0x60 Length 12

Record Type = PRIMARY_RECORD         Record Attributes =  NULL_BITMAP
Memory Dump @0x67EAC060

00000000:   10000900 010a0000 000100fe ††††††††††............             

Slot 0 Column 0 Offset 0x4 Length 5

rnd = 1.0
*/

-- Let's fix it

update testround
   set rnd = 0.9;
GO

-- Run CHECKTABLE again
DBCC CHECKTABLE('testround') -- success!  No issues.

-- Okay, example's over.  Turn off our TRACEON command and drop the table.

-- It is important to note that this does not work in 2008.  Whew.

DBCC TRACEOFF(3604)
GO

drop table testround;
GO
</code></pre>
]]></content:encoded>
			<wfw:commentRss>http://www.ssistalk.com/2010/05/04/sql-server-2005-how-to-introduce-data-corruption-without-trying/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server &#8211; Do you want to QUALIFY your results?</title>
		<link>http://www.ssistalk.com/2010/02/10/sql-server-do-you-want-to-qualify-your-results/</link>
		<comments>http://www.ssistalk.com/2010/02/10/sql-server-do-you-want-to-qualify-your-results/#comments</comments>
		<pubDate>Wed, 10 Feb 2010 16:34:36 +0000</pubDate>
		<dc:creator>Phil Brammer</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.ssistalk.com/?p=219</guid>
		<description><![CDATA[Teradata offers the ability to build a query, and then use a QUALIFY statement that filters the resulting resultset.  This is especially handy when using a ROW_NUMBER function where you are partitioning on a natural key (or whatever it may be) and you want to return only the rows where the ROW_NUMBER value is [...]]]></description>
			<content:encoded><![CDATA[<p>Teradata offers the ability to build a query, and then use a QUALIFY statement that filters the resulting resultset.  This is especially handy when using a ROW_NUMBER function where you are partitioning on a natural key (or whatever it may be) and you want to return only the rows where the ROW_NUMBER value is 1, for example.</p>
<p>In SQL Server today, this has to be done with derived tables/CTEs like so:</p>
<pre>
USE AdventureWorksDW
GO
/* Ignoring the fact that this table
   has a "Status" and an EndDate column */
;WITH CTE AS (
SELECT EmployeeKey,
       FirstName,
       LastName,
       MiddleName,
       Title,
       ROW_NUMBER() OVER (PARTITION BY EmployeeNationalIDAlternateKey
                              ORDER BY StartDate DESC) AS ROW_NUM
  FROM dbo.DimEmployee
)
SELECT EmployeeKey,
       FirstName,
       LastName,
       MiddleName,
       Title
  FROM CTE
 WHERE row_num = 1
 ORDER BY FirstName, LastName
GO
</pre>
<p>
That&#8217;s easy enough to understand, of course, but the problem lies in the fact that you have to write a bunch of extra lines of code to accomplish this task.</p>
<p>Teradata has the QUALIFY option which would be represented like this:</p>
<pre>
 SELECT EmployeeKey,
        FirstName,
        LastName,
        MiddleName,
        Title
   FROM dbo.DimEmployee
QUALIFY ROW_NUMBER() OVER (PARTITION BY EmployeeNationalIDAlternateKey
                               ORDER BY StartDate DESC) = 1
</pre>
<p>Note how much cleaner that looks.  QUALIFY has many advantages, but I&#8217;ll leave that as an exercise for you to review.  In the mean time, if you would like to see such an option in SQL Server, please vote on <a href="http://www.solidq.com/insidetsql/">Itzik Ben-Gan</a>&#8217;s feature request: <a href="https://connect.microsoft.com/SQLServer/feedback/details/532474/qualify-request-for-a-new-filtering-clause">https://connect.microsoft.com/SQLServer/feedback/details/532474/qualify-request-for-a-new-filtering-clause</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.ssistalk.com/2010/02/10/sql-server-do-you-want-to-qualify-your-results/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>0</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>0</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>2</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>0</slash:comments>
		</item>
	</channel>
</rss>
