Can anyone help on this.
I am new to Oracle and I learned that Oracle is going to every rows in the table when a new column with default value is added via alter table command.
And if we have over 60 Million records, it will take forever to run the simple alter table command. We have done this using DDL.
Does anyone has any suggestion on the best way to do the alter table with default value that will make oracle only apply the default value on any new rows without having to go to every rows in the table?
Or any solution to implement quickly when adding the column with default
Thanks,
Nelson
I am new to Oracle and I learned that Oracle is going to every rows in the table when a new column with default value is added via alter table command.
And if we have over 60 Million records, it will take forever to run the simple alter table command. We have done this using DDL.
Does anyone has any suggestion on the best way to do the alter table with default value that will make oracle only apply the default value on any new rows without having to go to every rows in the table?
Or any solution to implement quickly when adding the column with default
Thanks,
Nelson