What is the best default transaction isolation level for an ERP, if any?

前端 未结 5 1900
一整个雨季
一整个雨季 2021-02-02 16:09

Short background: We are just starting to migrate/reimplement an ERP system to Java with Hibernate, targeting a concurrent user count of 50-100 users using the system. We use MS

5条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-02 16:59

    For SQL Server (and probably most major RDBMS), I'd stick with the default. For SQL Server, this is READ COMMITTED. Anything more and you start overtaxing the DB, anything less and you've got consistency issues.

提交回复
热议问题