Forum Replies Created

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

  • RE: Alter Table

    Or, if you are not confident with directly modifying the system tables, you could do the following

    alter table mytable add col3 char(1) NULL, col4_copy char(1) NULL

    Update mytable set col4_copy =...

  • RE: Error handling in stored procedure

    When you look at the @@Error variable, it it is reset to 0 afterwards.

    So, to return it as a return from the stored procedure you would need to extract...

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