I am pretty new to oracle. My current scenario is I need to add a NOT NULL column and update its value to 'EE'. This is done using below script.
ALTER TABLE CSA.CSA_CALL_AUDIT ADD CSA_CALL_TYPE varchar2(10);
update CSA.CSA_CALL_AUDIT set CSA_CALL_TYPE = 'EE';
ALTER table CSA.CSA_CALL_AUDIT modify CSA_CALL_TYPE not null;
My requirement is to update 1000 records only at a time. In total the table has 39000 records.