How to fix the Oracle error ORA-28659: COMPRESS must be specified at object level first?
In this post, you’ll learn more about the Oracle ErrorORA-28659: COMPRESS must be specified at object level first with the details on why you receive this error and the possible solution to fix it.
Oracle Error Description
ORA-28659: COMPRESS must be specified at object level first
Reason for the Error ORA-28659: COMPRESS must be specified at object level first
Attempt to specify COMPRESS at partition level without first specifying at the table level
How to fix the Error ORA-28659: COMPRESS must be specified at object level first ?
You can fix this error in Oracle by following the below steps
Specify COMPRESS at table level. Use ALTER TABLE xxx MODIFY DEFAULT ATTRIBUTES COMPRESS …
Leave Your Comment