Oracleでシーケンスを作成し始めました。オラクルのドキュメントを調べているときに、このプロトタイプを入手しました
Create Sequence SeqTest5
Start With 0
Increment by 1
Min value 0
Maxvalue 8
NoCycle --I got to know we can give this as 'Cycle' which will again
-- Repeat the loop. But my doubt is why cannot we specify number of
-- Loops. Such as Cycle 20
NoCache --I got to know we can give certain buffer lenght via cache
試してみてこのエラーが発生したので、なぜ宣言できないのか説明してください
1 create sequence seqtest4
2 cache 30,
3* cycle 20,
SQL> /
cache 30,
*
ERROR at line 2:
ORA-00933: SQL command not properly ended
例えば:-
TNUM
0
1
4
2
3
5
6
7
8
この 0-8 は 10 回書き込み、停止する必要があります。