我们有一个后台系统,它通过MSDTC存储过程将发票信息插入 SQL 数据库,应用程序插入标题,然后是详细信息。
我已经在插入记录时触发的标题表上设置了一个CLR触发器。
我遇到的问题是触发器在COMMIT TRANSACTION
可能未填充详细信息的含义之前触发,这是触发的过程所必需的。此外,如果系统触发了ROLLBACK TRANSACTION
触发器,则触发器已经触发。
我知道触发器不能分配给 a COMMIT
,但想知道是否有人有其他想法。
我偶然发现了一个建议的 oracle 解决方案,您可以在其中创建一个更新的 Materlised 视图ON COMMIT
,并试图找到 TSQL 等效的索引视图,但没有运气实现它。
总结:是否可以在可能使用索引视图
时触发?COMMIT TRANSACTION
CLR触发代码
将 JMS 消息发送到队列,由Sonic ESB处理。
[Microsoft.SqlServer.Server.SqlTrigger(Name = "InvoiceTrigger", Target = "Table", Event = "FOR INSERT")]
public static void InvoiceTrigger()
{
//Declare Connection vairables
string connectionURL, connectionDomain, connectionUser, connectionPassword, connectionQueue;
//Constant
connectionUser = "user";
connectionPassword = "pass";
connectionQueue = "Queue";
//Local Environment
connectionURL = "tcp://IP:2506";
connectionDomain = "Domain1";
//Create connection sonic domain
SonicSend send = new SonicSend(connectionURL, connectionDomain, connectionUser, connectionPassword, connectionQueue);
//Send Test message to pipe
SqlCommand command;
SqlTriggerContext triggContext = SqlContext.TriggerContext;
SqlPipe pipe = SqlContext.Pipe;
SqlDataReader reader;
switch (triggContext.TriggerAction)
{
case TriggerAction.Insert:
// Retrieve the connection that the trigger is using
using (SqlConnection connection = new SqlConnection(@"context connection=true"))
{
connection.Open();
command = new SqlCommand(@"SELECT LSH_LINKCODE, DOC_CODE, LSH_DOCNUM FROM INSERTED;", connection);
reader = command.ExecuteReader();
if (reader.HasRows)
{
string xml;
char cr = (char)13;
int i = 0;
while (reader.Read())
{
xml = @"<Invoice action='insert'>";
xml += "<LinkCode>" + reader.GetString(0).ToString() + "</LinkCode>";
xml += "<DocumentCode>" + reader.GetString(1).ToString() + "</DocumentCode>";
xml += "<DocumentNumber>" + reader.GetString(2).ToString() + "</DocumentNumber>";
xml += @"</Invoice>";
i++;
send.testJMSsend(xml);
}
}
reader.Close();
}
break;
}
}