I have a sequence on a table and I need to bump it up.
Sequence Name: SQ_SRVC_CT
the Last Value: 43
I need the last value changed to 1155 so that the next record will have an ID of 1156.
I tried: Alter sequence SQ_SRVC_CT next value 1155
but I get the error: ORA-02286: no options specified for ALTER SEQUENCE
Also tried: alter sequence SQ_SRVC_CT lastvalue 1155 ORA-02286: no options specified for ALTER SEQUENCE
Sequence Name: SQ_SRVC_CT
the Last Value: 43
I need the last value changed to 1155 so that the next record will have an ID of 1156.
I tried: Alter sequence SQ_SRVC_CT next value 1155
but I get the error: ORA-02286: no options specified for ALTER SEQUENCE
Also tried: alter sequence SQ_SRVC_CT lastvalue 1155 ORA-02286: no options specified for ALTER SEQUENCE