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

前端 未结 5 1906
一整个雨季
一整个雨季 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:49

    Don't forget about SNAPSHOT, which is right below SERIALIZABLE.

    It depends on how important it is for the data to be accurate in the reports. It really is a task-by-task thing.

提交回复
热议问题