How to save Hash Value on the SQL Server?

How to save Hash Value on the SQL Server

What SQL Server data type to use

Hash Value looks like: {19,55,198,12,420,13,36,107,109,25,82,23,510,552,931,996,478,442,130,200}

Shomer @ http://www.xtremejewelery.com

http://www.xtremejewelery.com/watches/specials/

--------------------------------

From: Shomer




Answer this question

How to save Hash Value on the SQL Server?

  • mehrit

    Hi
    The best way to store the hash value is to use varbinary data type. If you have a binary representation, you can probably use that to store it directly. If all you have is a representation similar to that above, you can probably use two bytes to represent each of the integers in the sequence.

    - Christian

  • How to save Hash Value on the SQL Server?