1

如果 T_Referral 表上发生任何更新,我在触发器中有一个脚本来插入审计表,并且我正在使用 Decrypt 函数来解密其中一列中的数据。我在触发器中的代码是:

DECLARE @Sql_Insert nvarchar(max)
SET @Sql_Insert = ''
SET @Sql_Insert='INSERT INTO [Logg].AuditLogData(TableName, ColumnName, OldValue, OldValue_Decode, NewValue, NewValue_Decode, AuditSubCategoryID,[GuID])
select TableName, ColumnName, OldValue_Decode, case when ColumnName = ''BookingUserReferenceValue'' then utl.sfDecrypt(NewValue,0) Else NewValue end, NewValue_Decode, AuditSubCategoryID,[GuID] from #AuditLogData
where ISNULL(OldValue,'') != ISNULL([NewValue],'')'

exec utl.uspOpenOrCloseEncryptionKey 'open'
exec(@Sql_Insert )
exec utl.uspOpenOrCloseEncryptionKey 'close'

我的更新脚本是

Update RTS.T_Referral   
set BookingUserReferenceValue =  cast ('John Wayne' as varbinary(256))
where ReferralId = 20

我正在将记录更新为表John Wayne中的 varbinary T_Referral(记录看起来像0x4A6F686E205761796E65),并且当调用更新触发器时,它将将该记录加载为审计表中的 John Wayne。当记录插入 BookingUserReferenceValue 时,它​​将被加密。BookingUserReferenceValue 列的数据类型是 Varbinary(256)。当我尝试更新该列中的记录时,出现错误:

在预期条件的上下文中指定的非布尔类型的表达式,靠近 ')'。

有什么想法吗?谢谢

4

3 回答 3

5

您需要转义单引号:

SET @Sql_Insert='
INSERT INTO [Logg].AuditLogData(TableName, ColumnName, OldValue, OldValue_Decode, NewValue, NewValue_Decode, AuditSubCategoryID,[GuID])
select 
    TableName, ColumnName, OldValue, OldValue_Decode, 
    case when ColumnName = ''BookingUserReferenceValue'' then utl.sfDecrypt(NewValue,0) Else NewValue end,
    NewValue_Decode, AuditSubCategoryID,[GuID] 
from #AuditLogData
where 
    ISNULL(OldValue, cast('''' as varbinary(256))) != 
    ISNULL([NewValue], cast('''' as varbinary(256)))
';
于 2012-10-14T20:34:07.493 回答
1

IF如果我们在语句、WHERE子句、子句等中编写非布尔表达式,HAVING则会出现语法错误。请检查您的代码。

于 2013-05-24T05:42:11.130 回答
0

我认为您的 SELECT 列表中缺少 OldValue。我不确定为什么您没有收到列数不匹配的错误。

于 2012-10-14T22:06:12.650 回答