Hashbytes Computed列无法保留,因为该列是非确定性的

时间:2016-08-04 07:33:40

标签: c# sql-server hashbytes

我正在尝试使用datetime

HashBytes列进行哈希处理
alter table dbo.Events 
add HashKey AS hashbytes('MD5', cast(convert(varchar(200), format(datestamp,'yyyy-MM-dd HH:mm:ss.ffffff')) as  varbinary)) persisted

但由于它是非确定性的,我收到此错误:

  

计算列无法保留,因为该列是非确定性的。

我设法通过不指定以下格式来完成它

alter table dbo.PolicyEventsFromQueue 
add HashKey AS hashbytes('MD5', cast( datestamp as  varbinary)) persisted

但是在SQL Server中,当我看到格式和没有格式的结果时,我得到相同字段值的不同结果:

Select 
    convert(varchar(200), hashbytes('MD5', cast(convert(varchar(200), format(datestamp, 'yyyy-MM-dd HH:mm:ss.ffffff')) as varbinary)), 1)  
From 
    Events
Where 
    DateStamp ='2016-06-30 12:19:35.257961'

结果:

0xBE06A33FF10644A6D3B38EA134DDB97A

第二次查询:

select 
    hashbytes('MD5', cast('2016-06-30 12:19:35.257961' as varbinary))

结果:

0xBE06A33FF10644A6D3B38EA134DDB97A

第三个查询:

Select 
    convert(varchar(200), hashbytes('MD5', cast(DateStamp as varbinary)), 1)  
From 
    Events 
Where 
    DateStamp = '2016-06-30 12:19:35.257961'

结果:

0x3CB5C26B23EB4422515764686DFCAB82

基于上述研究,我理解的是SQL Server正在将日期戳转换为另一种格式,然后进行散列。

但是当我使用下面的函数得到同一日期的C#等价值(" 2016-06-30 12:19:35.257961")时,它与哈希值不匹配({{1 }})。

0x3CB5C26B23EB4422515764686DFCAB82

任何人都可以完全按照SQL Server和C#中的日期时间格式来匹配日期时间格式,以使其与public static byte[] GetMD5Hash(string input) { System.Security.Cryptography.MD5CryptoServiceProvider x = new System.Security.Cryptography.MD5CryptoServiceProvider(); byte[] bs = System.Text.Encoding.Unicode.GetBytes(input); bs = x.ComputeHash(bs); return bs; } 一起使用。

注意:我需要所有日期,包括miiliseconds。这个问题是以下问题的后续问题。它可能有助于您理解根本问题。

Need C# equivalent for the below SQL HashBytes function

1 个答案:

答案 0 :(得分:0)

我得到了解决方案。我修改了下面的HashBytes逻辑以获得所需的日期时间格式,并且在C#方面,我使用默认编码。

Select hashbytes('MD5', convert(varchar(200),(CONVERT(varchar(10),datestamp,126)+' '+CONVERT(VARCHAR(24),datestamp,114)),2))
from Events
Where DateStamp ='2016-06-30 12:19:35.257961'