Forum Replies Created

Viewing 6 posts - 1 through 7 (of 7 total)

  • RE: Distributed Transaction Trigger Problem

    That looks like it, thanks a lot

    RB

  • RE: Distributed Transaction Trigger Problem

    I tried your suggestion but I still get the same error message about not being able to enlist in the specified transaction coordinator.

    RB

     

  • RE: Trigger Help

    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...

  • RE: Trigger Help

    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...

  • RE: Trigger Help

    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...

  • RE: Getting data from another SQL Server

    Thanks, I'll give it a go.

Viewing 6 posts - 1 through 7 (of 7 total)