I created a table with a column S_ROLL NUMBER(3) NOT NULL Now I want this column to be like an identifier column. I used this command
alter table students modify ( S_ROLL NUMBER GENERATED BY DEFAULT ON NULL AS IDENTITY );
Then I get this error.
S_ROLL NUMBER GENERATED BY DEFAULT ON NULL AS IDENTITY * ERROR at line 4: ORA-30673: column to be modified is not an identity column
source share