Forum Replies Created

Viewing 4 posts - 1 through 4 (of 4 total)

  • RE: INSERTED DELETED Table error

    Thanks Bruce and Noel.

    Testing for nulls fixed my issue.

  • RE: INSERTED DELETED Table error

    Hi Bruce,

    I changed the code to

    USE [Performance]

    GO

    /****** Object: Trigger [dbo].[trgInsHSBCNetEPM1] Script Date: 02/19/2009 10:58:44 ******/

    SET ANSI_NULLS ON

    GO

    SET QUOTED_IDENTIFIER ON

    GO

    ALTER TRIGGER [dbo].[trgInsHSBCNetEPM1]

    ON [dbo].[FundPerfValues]

    AFTER INSERT, Update

    AS

    If...

  • RE: INSERTED DELETED Table error

    Yes, but the variables change because the same row is not always updated and put in the INSERTED Table.

    Adding Begin and End doesn't change the results. I get the...

  • RE: INSERTED DELETED Table error

    Hi Noel,

    My user enters one value, TotalNAVFinal, for a given month and I create a new row for the following month. This is why it's coded for one row....

Viewing 4 posts - 1 through 4 (of 4 total)