How to fix the Oracle error ORA-25006: cannot specify this column in UPDATE OF clause?
In this post, you’ll learn more about the Oracle ErrorORA-25006: cannot specify this column in UPDATE OF clause with the details on why you receive this error and the possible solution to fix it.
Oracle Error Description
ORA-25006: cannot specify this column in UPDATE OF clause
Reason for the Error ORA-25006: cannot specify this column in UPDATE OF clause
Attempt to create a trigger on update of a column whose datatype is disallowed in the clause, such as LOB and nested table.
How to fix the Error ORA-25006: cannot specify this column in UPDATE OF clause ?
You can fix this error in Oracle by following the below steps
Remove the UPDATE OF clause.
Leave Your Comment