Can you point me to some information on how to do this? I found
CHECKSUM() to build a hash index but the help file says it won't work
with text columns.
[quoted text, click to view] On 20 Dec 2006 23:53:32 -0800, niklas.arbin@nordicstation.com wrote:
>I guess the fastest way would be to hash the text and compare the
>values instead of comparing char vs. char.
>
>/Niklas
>
>Steve Harp skrev:
>
>> Hi All,
>>
>> I have a table that uses a text column to store lengthy (you guessed
>> it) text data. I need to write a store procedure that checks the
>> table prior to an insert/update to make sure the data isn't being
>> duplicated.
>>
>> How can this be done with a stored proc?
>>
>> Thanks,