I have a trigger that I want to do the following...
create calc trigger on tblPIW_DB1
instead of update
as
begin
declare @x money, @y money
select @x= isnull(i.[Acq Price],0), @y= isnull(i.[Over Head],0),... from inserted i
UPDATE dbo.[tblPIW_DB1] SET
[Acq Price] = @x,
[Over Head] = @y...