ubject: PK generation problem: uniqueness constraint violated
Hello,
I have a small application with an Oracle DB schema containing a single
sequence, to be used by all tables (there aren't many of them). The sequence is
created with this code:
CREATE SEQUENCE MY_SEQ
INCREMENT BY 1
START WIT
Hello,
I have a small application with an Oracle DB schema containing a single
sequence, to be used by all tables (there aren't many of them). The sequence is
created with this code:
CREATE SEQUENCE MY_SEQ
INCREMENT BY 1
START WITH 1
MINVALUE 1
MAXVALUE 999
NOCYCLE