oracle sequence 是否需要顺序?

前端之家收集整理的这篇文章主要介绍了oracle sequence 是否需要顺序?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
The ORDER clause is a performance killer for sequences in Oracle RAC. This clause will guarantee that the NEXTVAL is in order from the prevIoUs value no matter which instance is asking for the next value. For an active sequence,this means there will be lots of chatter on the Cluster Interconnect. Also,if you use ORDER,then it is worse than NOCACHE (another performance killer for active sequences in Oracle RAC). 原文链接:https://www.f2er.com/oracle/211493.html

猜你在找的Oracle相关文章