cannot extend rollback segment error
hi all,
I have a table with about 20million records.
I do a update of all records in a single update statement.
So i get this unable to extend the rollback segment error
adding a datafile will solve the problem i guess.
But is there any way of temporary stopping of writing into rollback segment before updating and resuming it after the update statement.
thanx
unable to extend rollback segment
I hope whatever you have to update is having a field value which when negated will exclude the updated records. Under such condition u can update the table by giving a where clause as "and rownum < &desired_rownum_w.r.t_ur_m/c_capacity" in each update cycle and multiple update cycle may be used with commit or rollback between each cycle.