How to fix the Oracle error ORA-14066: illegal option for a non-partitioned index-organized table?
In this post, you’ll learn more about the Oracle ErrorORA-14066: illegal option for a non-partitioned index-organized table with the details on why you receive this error and the possible solution to fix it.
Oracle Error Description
ORA-14066: illegal option for a non-partitioned index-organized table
Reason for the Error ORA-14066: illegal option for a non-partitioned index-organized table
An attempt was made to issue a CREATE or ALTER TABLE command on a non-partitioned IOT, but the command contains an option that is legal only for partitioned index-organized tables. Such options are: ENABLE ROW MOVEMENT and DISABLE ROW MOVEMENT.
How to fix the Error ORA-14066: illegal option for a non-partitioned index-organized table ?
You can fix this error in Oracle by following the below steps
Remove the illegal option(s) from the command.
Leave Your Comment