I have a table that contains remarks regarding a customer. The remarks can be up to 8000 characters in length and there can be multiple records for a given customer. What I need to do is compare the differences between 2 sets of remarks for a given customer and then list out what was changed from the first to the second. Example:
Customer A, Remark 1: this is an initial add of remarks.
Customer A, Remark 2: this is an initail add of remarks. Updated added on 03NOV10.
The process should return "Updated added on 03NOV10.". What makes things a bit more difficult is that the remark changes can be anywhere, not just appended to the end of the original remarks. I'm trying to do this in SQL Server 2000, but am willing to work with VB .NET or perhaps Excel. Any ideas?
Customer A, Remark 1: this is an initial add of remarks.
Customer A, Remark 2: this is an initail add of remarks. Updated added on 03NOV10.
The process should return "Updated added on 03NOV10.". What makes things a bit more difficult is that the remark changes can be anywhere, not just appended to the end of the original remarks. I'm trying to do this in SQL Server 2000, but am willing to work with VB .NET or perhaps Excel. Any ideas?