Forum Replies Created

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

  • RE: Keeping Connection open for continuous db inserts?

    It was discussed & decided that every insert should be a physical one commited to db. The question was whether to follow Microsoft's recommendation to close the connection after every transaction...

  • RE: Keeping Connection open for continuous db inserts?

    Locks would be freed by commiting the transaction (which has this INSERT/UPDATE stmt) in the stored procedure. The application need not close the connection(after every update) for releasing the locks. Moreover, by default SQL server...

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