Sir
I created a sequence like bellow
CREATE SEQUENCE "ALIZA"."PRODUCTS_SEQ" MINVALUE 1 MAXVALUE 9999999999999999999999999999 INCREMENT BY 1 START WITH 1 CACHE 20 NOORDER NOCYCLE ;
But some times I see that during inserting records into database it jumps directly to 21
What could be the reason?
Regards