Is there a way to get fragmentation for specific table/index in 9iR2 other than that provided in met
**Oracle is currently working on an SR on this topic, while we are diagnosing the problem we are opening up this
question to our user community so they can add perspective to the solution based on their real world experience**
I think we could use the DBA_TABLES.EMPTY_BLOCKS column as it displays the right number of unused blocks for Freelist segments and For BMB (Bit Mapped Block) segments, use the DBMS_SPACE.UNUSED_SPACE procedure to get the right number of unused blocks returned by the parameter UNUSED_BLOCKS.
The dbms_space.space_usage can be used to know the unformatted blocks.
I think we could use the DBA_TABLES.EMPTY_BLOCKS column as it displays the right number of unused blocks for Freelist segments and For BMB (Bit Mapped Block) segments, use the DBMS_SPACE.UNUSED_SPACE procedure to get the right number of unused blocks returned by the parameter UNUSED_BLOCKS.
The dbms_space.space_usage can be used to know the unformatted blocks.
0