<?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: SSIS &#8211; Using a checksum to determine if a row has changed</title>
	<atom:link href="http://www.ssistalk.com/2007/03/09/ssis-using-a-checksum-to-determine-if-a-row-has-changed/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.ssistalk.com/2007/03/09/ssis-using-a-checksum-to-determine-if-a-row-has-changed/</link>
	<description>Random thoughts and experiences with SSIS, by Phil Brammer</description>
	<lastBuildDate>Wed, 25 Jan 2012 10:27:44 -0600</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: E Andrews</title>
		<link>http://www.ssistalk.com/2007/03/09/ssis-using-a-checksum-to-determine-if-a-row-has-changed/comment-page-1/#comment-32986</link>
		<dc:creator>E Andrews</dc:creator>
		<pubDate>Fri, 02 Sep 2011 03:23:09 +0000</pubDate>
		<guid isPermaLink="false">http://www.ssistalk.com/2007/03/09/ssis-using-a-checksum-to-determine-if-a-row-has-changed/#comment-32986</guid>
		<description>You need to be very careful using a Checksum.  Things like this will yield the exact same checksum even though they are really changes:

FirstName  LastName  ZipCode
Bob        Roger     12345
Roger      Bob       12345

The Checksum method instead of a MERGE is beneficial in data warehousing projects, especially with SCD&#039;s.</description>
		<content:encoded><![CDATA[<p>You need to be very careful using a Checksum.  Things like this will yield the exact same checksum even though they are really changes:</p>
<p>FirstName  LastName  ZipCode<br />
Bob        Roger     12345<br />
Roger      Bob       12345</p>
<p>The Checksum method instead of a MERGE is beneficial in data warehousing projects, especially with SCD&#8217;s.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sandeep Moturi</title>
		<link>http://www.ssistalk.com/2007/03/09/ssis-using-a-checksum-to-determine-if-a-row-has-changed/comment-page-1/#comment-32292</link>
		<dc:creator>Sandeep Moturi</dc:creator>
		<pubDate>Tue, 23 Aug 2011 10:08:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.ssistalk.com/2007/03/09/ssis-using-a-checksum-to-determine-if-a-row-has-changed/#comment-32292</guid>
		<description>Do not use any checksum transformation built by some XYZ. Use checksum() function given by microsoft in sql server.In oledb source instead of selecting table or view select the sql query and write a query to generate checksum in the source transfromation itself and later to left outrer join with target using merger join. from  that take only null values on target using condinal split.. this gives the changed records using set based opreation.. this is a very fast processing technique compared to row by row lookup operation.</description>
		<content:encoded><![CDATA[<p>Do not use any checksum transformation built by some XYZ. Use checksum() function given by microsoft in sql server.In oledb source instead of selecting table or view select the sql query and write a query to generate checksum in the source transfromation itself and later to left outrer join with target using merger join. from  that take only null values on target using condinal split.. this gives the changed records using set based opreation.. this is a very fast processing technique compared to row by row lookup operation.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pram</title>
		<link>http://www.ssistalk.com/2007/03/09/ssis-using-a-checksum-to-determine-if-a-row-has-changed/comment-page-1/#comment-27078</link>
		<dc:creator>pram</dc:creator>
		<pubDate>Tue, 28 Jun 2011 13:00:13 +0000</pubDate>
		<guid isPermaLink="false">http://www.ssistalk.com/2007/03/09/ssis-using-a-checksum-to-determine-if-a-row-has-changed/#comment-27078</guid>
		<description>Will the checksum transform be better than merge TSQL?</description>
		<content:encoded><![CDATA[<p>Will the checksum transform be better than merge TSQL?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: pram</title>
		<link>http://www.ssistalk.com/2007/03/09/ssis-using-a-checksum-to-determine-if-a-row-has-changed/comment-page-1/#comment-27072</link>
		<dc:creator>pram</dc:creator>
		<pubDate>Tue, 28 Jun 2011 11:08:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.ssistalk.com/2007/03/09/ssis-using-a-checksum-to-determine-if-a-row-has-changed/#comment-27072</guid>
		<description>I am using merge TSQL to do the detla load.
Will the lookup transform be better than merge TSQL</description>
		<content:encoded><![CDATA[<p>I am using merge TSQL to do the detla load.<br />
Will the lookup transform be better than merge TSQL</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Aira</title>
		<link>http://www.ssistalk.com/2007/03/09/ssis-using-a-checksum-to-determine-if-a-row-has-changed/comment-page-1/#comment-22999</link>
		<dc:creator>Aira</dc:creator>
		<pubDate>Sun, 22 May 2011 03:16:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.ssistalk.com/2007/03/09/ssis-using-a-checksum-to-determine-if-a-row-has-changed/#comment-22999</guid>
		<description>Posts like this brithegn up my day. Thanks for taking the time.</description>
		<content:encoded><![CDATA[<p>Posts like this brithegn up my day. Thanks for taking the time.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rama</title>
		<link>http://www.ssistalk.com/2007/03/09/ssis-using-a-checksum-to-determine-if-a-row-has-changed/comment-page-1/#comment-22126</link>
		<dc:creator>Rama</dc:creator>
		<pubDate>Fri, 13 May 2011 02:27:02 +0000</pubDate>
		<guid isPermaLink="false">http://www.ssistalk.com/2007/03/09/ssis-using-a-checksum-to-determine-if-a-row-has-changed/#comment-22126</guid>
		<description>How about showing step by step example with screen shots? God will bless you.

Thanks.</description>
		<content:encoded><![CDATA[<p>How about showing step by step example with screen shots? God will bless you.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kashan</title>
		<link>http://www.ssistalk.com/2007/03/09/ssis-using-a-checksum-to-determine-if-a-row-has-changed/comment-page-1/#comment-13537</link>
		<dc:creator>Kashan</dc:creator>
		<pubDate>Tue, 25 Jan 2011 08:31:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.ssistalk.com/2007/03/09/ssis-using-a-checksum-to-determine-if-a-row-has-changed/#comment-13537</guid>
		<description>Will generated hash change,if there is any change in column sequence ?</description>
		<content:encoded><![CDATA[<p>Will generated hash change,if there is any change in column sequence ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CarryLiu</title>
		<link>http://www.ssistalk.com/2007/03/09/ssis-using-a-checksum-to-determine-if-a-row-has-changed/comment-page-1/#comment-10530</link>
		<dc:creator>CarryLiu</dc:creator>
		<pubDate>Fri, 03 Dec 2010 05:01:42 +0000</pubDate>
		<guid isPermaLink="false">http://www.ssistalk.com/2007/03/09/ssis-using-a-checksum-to-determine-if-a-row-has-changed/#comment-10530</guid>
		<description>I&#039;m sincerely appreciate the author.This problem is the real one that I want to solve.And the author helps me.</description>
		<content:encoded><![CDATA[<p>I&#8217;m sincerely appreciate the author.This problem is the real one that I want to solve.And the author helps me.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kelly Childers</title>
		<link>http://www.ssistalk.com/2007/03/09/ssis-using-a-checksum-to-determine-if-a-row-has-changed/comment-page-1/#comment-4930</link>
		<dc:creator>Kelly Childers</dc:creator>
		<pubDate>Thu, 19 Aug 2010 14:34:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.ssistalk.com/2007/03/09/ssis-using-a-checksum-to-determine-if-a-row-has-changed/#comment-4930</guid>
		<description>When I am trying to configure the OLE DB command with the ? I am getting an error.  Can you please provide further clarification as to how this should be configured?</description>
		<content:encoded><![CDATA[<p>When I am trying to configure the OLE DB command with the ? I am getting an error.  Can you please provide further clarification as to how this should be configured?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Cedric De Vroey</title>
		<link>http://www.ssistalk.com/2007/03/09/ssis-using-a-checksum-to-determine-if-a-row-has-changed/comment-page-1/#comment-2563</link>
		<dc:creator>Cedric De Vroey</dc:creator>
		<pubDate>Tue, 09 Mar 2010 12:15:54 +0000</pubDate>
		<guid isPermaLink="false">http://www.ssistalk.com/2007/03/09/ssis-using-a-checksum-to-determine-if-a-row-has-changed/#comment-2563</guid>
		<description>Hi,

I&#039;m a Consultant at Numius and just tried the code from Keith Martin. http://ssismhash.codeplex.com/

I can recommend it to anyone, very good code and does exactly what it should do. Good work!


kind regards,

Cedric De Vroey
Consultant

Numius NV - Better performance starts with insight</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I&#8217;m a Consultant at Numius and just tried the code from Keith Martin. <a href="http://ssismhash.codeplex.com/" rel="nofollow">http://ssismhash.codeplex.com/</a></p>
<p>I can recommend it to anyone, very good code and does exactly what it should do. Good work!</p>
<p>kind regards,</p>
<p>Cedric De Vroey<br />
Consultant</p>
<p>Numius NV &#8211; Better performance starts with insight</p>
]]></content:encoded>
	</item>
</channel>
</rss>

