Oracle 12.2 - Replacement of NOPARTITION feature
问题 I have Oracle version 12.2.0.1.0 We have generic script which create sequence that need to be reuse for different objects (by renaming sequence name): CREATE SEQUENCE NAME_SEQ MINVALUE 1 MAXVALUE 999999999 INCREMENT BY 1 START WITH 100 CACHE 200 NOORDER NOCYCLE NOPARTITION ; This script isn't working with below error until I remove NOPARTITION : ORA-00933: SQL command not properly ended I found in AskTom that the NOPARTITION is not supported in 12.2 there's been various of things in previous