oraclejens
Programmer
Hello,
i've got a table with 13 million datasets. The table contains a column
YWERT NUMBER(6,3) NOT NULL. I need to change the Column to Number(10,5),
so my question is, will the statement
ALTER TABLE TBLSSERESAVBEINZEL MODIFY(YWERT NUMBER(10,5));
generate redo logs or will it not, since it is DDL?
The problem is, that the harddisk with the redo logs has only a small amount of space left since there is a major hardware upgrade planned in a few weeks and i need to decide if i do the change of the table now or if i delay it for a few weeks.
i've got a table with 13 million datasets. The table contains a column
YWERT NUMBER(6,3) NOT NULL. I need to change the Column to Number(10,5),
so my question is, will the statement
ALTER TABLE TBLSSERESAVBEINZEL MODIFY(YWERT NUMBER(10,5));
generate redo logs or will it not, since it is DDL?
The problem is, that the harddisk with the redo logs has only a small amount of space left since there is a major hardware upgrade planned in a few weeks and i need to decide if i do the change of the table now or if i delay it for a few weeks.