Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> When will Oracle reuse free space created with deletes
Been playing around.... When will Oracle attempt to reuse the space freed up by deletes? Seems like Oracle tends to insert farther down the heap, even if there is free space at the head of the table?
Please see below?
rgaffuri> create table x (y number);
Table created.
rgaffuri> insert into x values(1);
1 row created.
rgaffuri> insert into x values(2);
1 row created.
rgaffuri insert into x values (3);
1 row created.
rgaffuri> select y from x;
1 2 3
2 3
2 3 4
![]() |
![]() |