Forum Replies Created

Viewing 2 posts - 1 through 3 (of 3 total)

  • RE: Field Name change and trigger problems

    Thanks! The idea of deleting the old triggers and replacing them with new triggers worked.

    Tony

  • RE: Field Name change and trigger problems

    Here's the trigger on one of them:

    CREATE TRIGGER "tblCustomerName_DTrig" ON dbo.tblCustomerName FOR DELETE AS

    SET NOCOUNT ON

    /* * CASCADE DELETES TO 'tblCustomerChallenge' */

    DELETE tblCustomerChallenge FROM deleted, tblCustomerChallenge WHERE deleted.strCustID = tblCustomerChallenge.strCustID

    /*...

Viewing 2 posts - 1 through 3 (of 3 total)