Hello All,
Curious to know if it's possible to create a join between
the inserted table in a trigger and a table in a linked
server database? I haven't been able to get this to work.
IE.
IF Exists (SELECT distinct B.CustNumb
FROM LinkedServerB.Database.dbo.Customers B
inner join inserted ON B.custid = inserted.custid)
Thanks in advance,
R