Makale Yazarı

Yazar Biyografik Bilgiler Eklememiş

  • Toplam 1 Yazı
  • Toplam 0 Yorum

Reclaim Space from Index Segment in ORACLE

Oracle 1 dakika önce

First analyze if an index segment requires rebuild because its resource intensive process. ANALYZE INDEX {index name} VALIDATE STRUCTURE; SQL> SELECT name, height, lf_rows, lf_blks, del_lf_row FROM INDEX_STATS; Then Rebuild index only if you see HEIGHT is above 4 and Deleted Leaf Row is less than 20. ALTER INDEX {index name} REBUILD ONLINE;