Database Object Fragmentation in Oracle

If a table or index becomes fragmented (not continuous on disk) performance can decrease. You can see which objects have over 10 extents with:


select * from dba_segments where extents > 10;

If it is more than 10 it is a candidate for rebuilding.


To rebuild a table:

- Export the table (with compress=Y)
- Drop the table
- Import the table



To rebuild an index:

- Use Flex2SQL to drop and recreate it. Possibly hand crafting the 'next' storage parameter



Recommendation:
 Inform customers to check their tables that have possible performance and if they do, recreate them.

 

Data Security with Flex2SQL and BTR2SQL Connectivity Products

Data Security with Flex2SQL and BTR2SQL Connectivity Products

The most common reason for Enterprises looking to migrate from legacy Btrieve or DataFlex databases is the urgent need to address security and...

Read More
Why Migrate from Btrieve to PostgreSQL and other Relational Databases?

Why Migrate from Btrieve to PostgreSQL and other Relational Databases?

Introduction Many independent software vendors (ISV) and corporate users still rely on applications that use a category of database collective called...

Read More
Four Challenges in Converting COBOL Applications from ISAM Databases to Relational Databases

Four Challenges in Converting COBOL Applications from ISAM Databases to Relational Databases

COBOL applications are the foundation of numerous essential business functions, especially within the banking, insurance, and government sectors....

Read More