alter table add column performance
501151Aug 24 2006 — edited Aug 25 2006I have a table containing few million rows. Executing the following alter table command on it takes few hours. How do I improve the performance in this case?
ALTER TABLE <table name>
ADD <column name> VARCHAR2(30) DEFAULT USER NOT NULL
ADD <column name> TIMESTAMP(6) DEFAULT SYSDATE NOT NULL