Now the highest ID in ID column is 192409. I need Oracle to start adding new values from number 192734 (I want to values between 192409 and 192734 will be empty). How can I do this?
This is how this column is configured
("ID" NUMBER(38,0) GENERATED BY DEFAULT ON NULL AS IDENTITY
MINVALUE 1 MAXVALUE 9999999999999999999999999999
INCREMENT BY 1 START WITH 125 CACHE 20 NOORDER NOCYCLE NOT NULL ENABLE)
I tried to do update on last ID, but it didnt work.
Alter table, apparently.
Sample table and data:
Modify next value of the identity column:
Some more testing: