Hi,
I have recently added a column STATUS_CODE VARCHAR2(50) to REV_TRANSACTIONS table which is having 1 billion records.
I did testing, Data around 50K records also populated into STATUS_CODE column.
I want to drop the STATUS_CODE column now, when i run following statement it is taking very long time running since last 15 mins.
ALTER TABLE REV_TRANSACTIONS DROP COLUMN STATUS_CODE;
Please advise the way to drop column in shorter time.
Thanks,