Viewing 6 posts - 1 through 7 (of 7 total)
That looks like it, thanks a lot
RB
February 1, 2006 at 4:28 pm
I tried your suggestion but I still get the same error message about not being able to enlist in the specified transaction coordinator.
RB
February 1, 2006 at 3:57 pm
Apologies if this message is posted twice but the first time I posted it nothing seemed to happen.
Thanks for the above comments. It will take me a little while to...
September 22, 2005 at 5:14 pm
Thanks
I've come up with this which seems to work ok.
CREATE TRIGGER [UpdateDA] ON [dbo].[ImagingEmu]
FOR INSERT
AS
DECLARE @IRN char(12)
SET @IRN = (SELECT IRN FROM inserted)
IF(SELECT COUNT(IRN) FROM ProductionControl WHERE IRN...
September 22, 2005 at 1:00 am
Thanks for the reply,
Unfortunately there is no primary key in 'inserted'. This is for a request system. A primary key only gets generated when the request is inserted into the ProductionControle...
September 21, 2005 at 4:29 pm
Viewing 6 posts - 1 through 7 (of 7 total)