我让这个触发器在另一个 sql server/database 上工作正常。现在它什么都不做,我需要设置的任何先决条件或想法为什么这不起作用.. SQL Server 2008
create trigger Autoupdate6 -- Creating Trigger
On NumericSamples
For Insert
As
Insert Into BM1OILT
Select SampleDateTime, SampleValue From NumericSamples
Where TagID = 8 and UpdateC = 0
UPDATE NumericSamples set UpdateC = 1 WHERE TagID = 8
go
谢谢,
弄清楚了,插入到表中的程序正在执行批量插入,通过传递触发器.. 使用工作而不是触发器。再次感谢 Aaron Bertrand 试图和我一起解决这个问题。