Forum Replies Created

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

  • RE: DB application off of a DVD

    Just off the top of my head: what about using MSDE (Micro$oft Data Engine) and put that on the DVD, along with everything else?

  • RE: Update several records in TRIGGER - how?

    Okay, here goes - this is the entire trigger:

    CREATE TRIGGER [PostTransactions_inserted] ON dbo.PostTransactions

    FOR INSERT

    AS

    SET NOCOUNT ON

    IF (SELECT affectsBalance FROM inserted) = -1

    BEGIN

    DECLARE @thisClient AS int

    DECLARE @thisPhone AS varchar(20)

    SET...

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