RE: PK generation problem: uniqueness constraint violated

2007-08-10 Thread Török Péter
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

PK generation problem: uniqueness constraint violated

2007-08-07 Thread Török Péter
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