Forum Replies Created

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

  • RE: Previous date's value

    Just a thought from a rattled brain but...

    If you dont need to see the previous days balance prior to doing an insert or update, then why not just throw a...

  • RE: Table Triggers

    Ive used the following to retrieve the table name;

    declare @TbleName nvarchar(324)

    SET @TbleName=(Select name from sysobjects where sysobjects.id = (select parent_obj from sysobjects where sysobjects.id =@@PROCID))

    Of course then what you do...

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