Skip to content
Advertisement

Modify generated column in Oracle

I have created a database table in Oracle with an auto generated column:

Now I do not need it to be generated automatically. I tried to write:

But it did not work. The database gives an error:

Can someone please explain how to solve this issue without dropping the column?

Advertisement

Answer

(There’s no such thing as “PLSQL database”; PL/SQL is a procedural extension to Oracle’s SQL. Database is Oracle.)


Drop the identity:

User contributions licensed under: CC BY-SA
8 People found this is helpful
Advertisement