Hello,
I am trying to create a sequence thus:
CREATE SEQUENCE "stest" START WITH 1, CACHE 32;
but it fails with the error: incorrect syntax near ",": line 1 col 36 (at pos 36).
There is no problem with a single parameter, e.g.:
CREATE SEQUENCE "stest" START WITH 1;
CREATE SEQUENCE "stest" CACHE 32;
According to the SQLScript reference,
<sequence_parameter_list> ::= <sequence_parameter>[{,<sequence_parameter>}...]
What am I doing wrong?
Help others by sharing your knowledge.
AnswerRequest clarification before answering.
there should not be , between parameters, can you try that please
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 10 | |
| 5 | |
| 5 | |
| 5 | |
| 3 | |
| 3 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.