Code: Select all
CREATE SEQUENCE s_test
INCREMENT BY 1
START WITH 1
NOMAXVALUE
NOMINVALUE
NOCYCLE
NOCACHE;error message : ORA-02287:sequence number not allowed here.
Code: Select all
ALTER SEQUENCE s_test INCREMENT BY 100000;
SELECT s_test.NEXTVAL FROM dual; -- Error ORA-02287
ALTER SEQUENCE s_test INCREMENT BY 1;
If the DataSet property of the TOraScript component is empty,
you get no error.
But in my TOraScript component the DataSet property
is filled with a TSmartQuery reference.
IDE: C++Builder XE4 Update 1 / ODAC 9.0.2 Professional
Direct mode and OCI mode
Thank you.