Oracle Sequence 생 성 시 Order / NoOrder 옵션
Oracle 에서 Sequence 를 만 들 때 Order / NoOrder 두 가지 옵션 이 있 습 니 다. 그러면 도대체 어떤 장면 에 Order 를 사용 하고 어떤 장면 에 NoOrder 를 사용 합 니까?
공식 문서
ORDER
guarantees that sequence numbers are generated in order of request.
You may want to use this option if you are using the sequence
numbers as timestamps. Guaranteeing order is usually not important
for sequences used to generate primary keys.
NOORDER
does not guarantee sequence numbers are generated in order of
request.
If you omit both the ORDER and NOORDER options, Oracle chooses
NOORDER by default. Note that the ORDER option is only necessary to
guarantee ordered generation if you are using Oracle with the
Parallel Server option in parallel mode. If you are using exclusive
mode, sequence numbers are always generated in order.
Order:
。 timestamp( ) , 。 , 。
NOORDER:
Order , 。
CPU oracle DB ABC sequence , A B, A B , ABC 9。 ORDER , A 9, B 10。 , B 9, A 10。
,sequence 。 , , sequence ID , ID 。 , sequence , Order , 。
:https://www.cnblogs.com/damens/p/6460606.html
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
[Oacle] cent os 6.4 에 Oacle 11gr 2 노트 설치설치 환경: Linux jwg02.jws 2.6.32-358.el6.x86_64 #1 SMP Fri Feb 22 00:31:26 UTC 2013 x86_64 x86_64 x86_64 GNU/Linux tigervnc...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.