There is no direct keyword, and you need to modify the table (the correct words START WITH).
There is another way to change the highwatermark for the identity column. As for common sequences (by the way, identity is built on a system sequence), use the old INCREMENT BY trick to move the label in any direction.
ALTER TABLE T MODIFY (ID NUMBER GENERATED ALWAYS AS IDENTITY INCREMENT BY 50 NOCACHE);
That is, if at present the next value is 100, and you need to make it 1000, you do this trick two times: "increase by 900", add a record and backward "increment by 1" (if the identity is in step 1).
source share