Have an error while trying to create Oracle sequence
CREATE SEQUENCE HR.order_entry_id
AS BIGINT START WITH 1 INCREMENT BY 1;
CREATE SEQUENCE HR.USER_PROFILE_SEQ
AS BIGINT START WITH 1 INCREMENT BY 1
Error at line 1 ORA-00933: SQL command not properly ended
Is there an issue with this create statement?