Hi,

Once you have Unused Columns, You can not ask to to drop the column as you tried.

Look

Alter Table Mytable
Set Unused (columnName);

Now... You can't say to Drop Directly... Use This Instead

Alter Table Mytable
Drop Unused Columns; ... Don't change any thing in this except to give the Table name ..

It should be fine... Any question

[email protected]

Thanks..