I have a table in my database.Earlier while performing the DROP DDL there was no issue. But after some days as the table become large and i tried DROP DDL it is saying:
SQL Error: ORA-39726: unsupported add/drop column operation on compressed tables.
As per my DBA no commands were run to compress the table.
You could check the compression status by querying [DBA|ALL|USER]_TABLES view.
For example,
Dropping the column depends on the type of compression. For a table compressed for direct- path inserts, you cannot drop the column. However, if the table is compressed for all operations, then you can use
SET UNUSED/ DROP UNUSED.How to drop the column in a compressed table
The only way is: