Better concurrency in Oracle than SQL Server?

前端 未结 4 766
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-12-29 17:36

Is it true that better concurrency can be achieved in Oracle databases than in MS SQL Server databases? In particular in an OLTP scenario, such as an ERP system?

I\'

4条回答
  •  野趣味
    野趣味 (楼主)
    2020-12-29 18:24

    He/She was probably referring to the facts that:

    • In Oracle readers do not block writers and writers do not block readers
    • Oracle does not maintain a list of row locks so there is no significant overhead in locking and locks never escalate to the table level.

提交回复
热议问题