Is there any way in SQL Server 2012 to generate a hash of a set of rows and columns?
I want to generate a hash, store it on the parent record. The when an update co
You can use the CHECKSUM_AGG aggregate. it is made for that purpose.