ADD IDENTITY to existing Column in 12c
Hi,
i would like to add the identity property to an existing column. Oracle Doc says: ok, but look
CREATE TABLE scott.t (id NUMBER,text VARCHAR2(10));
ALTER TABLE scott.T MODIFY (ID NUMBER GENERATED AS IDENTITY );
ORA-30673: Zu ändernde Spalte ist keine Identity-Spalte => modified column is not a identity column
Is this a Documentation Bug ?
Thanks
Marco
i would like to add the identity property to an existing column. Oracle Doc says: ok, but look
CREATE TABLE scott.t (id NUMBER,text VARCHAR2(10));
ALTER TABLE scott.T MODIFY (ID NUMBER GENERATED AS IDENTITY );
ORA-30673: Zu ändernde Spalte ist keine Identity-Spalte => modified column is not a identity column
Is this a Documentation Bug ?
Thanks
Marco
0