I am writing an update trigger that will update a value in database #2 whenever a certain column in database #1 is updated. The trigger is firing correctly and does update the field that it is supposed to. The problem is that I don't know how to join the Inserted table from database #1 into this trigger. I have joined the table from database #2 with the delete table from database #1, but I need to also join the inserted table. This is what I have so far...
CREATE TRIGGER UPDT_HW_MACHINEID
ON [dbo].[Hardware]
FOR UPDATE
AS
IF UPDATE(MachineID)
UPDATE b
SET MachineID = 'Test'
FROM [SoftwareDB].[dbo].[Licensed_PCs] b JOIN Deleted d on b.MachineID = d.MachineID
GO
This code does update the appropriate record to the word Test, but I want it to update the value to the Inserted value from database #1, so....
Set MachineID = i.MachineID
How do I join the Inserted table to the join I already have listed above. Any help that you can offer would be most appreciated. Thanks very very much![[smile] [smile] [smile]](/data/assets/smilies/smile.gif)
CREATE TRIGGER UPDT_HW_MACHINEID
ON [dbo].[Hardware]
FOR UPDATE
AS
IF UPDATE(MachineID)
UPDATE b
SET MachineID = 'Test'
FROM [SoftwareDB].[dbo].[Licensed_PCs] b JOIN Deleted d on b.MachineID = d.MachineID
GO
This code does update the appropriate record to the word Test, but I want it to update the value to the Inserted value from database #1, so....
Set MachineID = i.MachineID
How do I join the Inserted table to the join I already have listed above. Any help that you can offer would be most appreciated. Thanks very very much
![[smile] [smile] [smile]](/data/assets/smilies/smile.gif)