Does altering a column length locks for DMLs?
We have a table with 500 Million records, and we have to alter a column length from Varchar2(20) to Varchar2(40). Does this alter statement locks for DML so until the alter completes we wont be able to run any inserts/updates?
0