1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
SQL> create table DEMO(n constraint DEMO_N primary key) as select rownum from xmltable('1 to 1000');
Table DEMO created.
SQL> delete from DEMO;
1,000 rows deleted.
SQL> commit;
Commit complete.
SQL> insert into DEMO values(1);
1 row inserted.
SQL> insert into DEMO values(1000);
1 row inserted.
SQL> analyze index DEMO_N validate structure;
Index DEMO_N analyzed.
SQL> select lf_rows,del_lf_rows from index_stats;
LF_ROWS DEL_LF_ROWS
---------- -----------
2 0 |
Partager