Forum Replies Created

Viewing 2 posts - 31 through 32 (of 32 total)

  • RE: Sql Triggers

    better way is to define a default and bind to the column as follows.

    It is better to avoid triggers to improve the performance.

    create default today as getdate()

    sp_bindefault today ,'

  • RE: Table statistics?

    Another most frequently used option

    is to have a modified_date column in all tables with getdate() as the default option

    so as to find when the table was modified at...

Viewing 2 posts - 31 through 32 (of 32 total)