Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Mailing Lists -> Oracle-L -> Re: Index rebuild vs. coalesce
Advantages of rebuild over coalesce
1. Can move the index to another tablespace.
2. Can rebuild the index using new storage parameters without dropping the
original index.
3. Higher costs because requires more disk space. Coalescing is an
in-place data reorganization operation therefore it does not require
addintional disk space like rebuild.
4. Creates a new tree this can shrink the height of the tree if applicable.
Coalescing will coalesce the leaf blocks within same branch of the tree.
5. Can compute statistics ( not estimate statistics ) while rebuilding
indexes.
6. Can convert an existing normal b-tree index into a reverse key index
7. Finally you would rebuild and not coalesce when the table of the index
has been moved to another tablespace .
----- Original Message -----
To: "Multiple recipients of list ORACLE-L" <ORACLE-L_at_fatcity.com>
Sent: Thursday, May 22, 2003 20:47
> What do I get from an index rebuild that I do not get from
> simply coalescing the index?
>
> Thanks,
> Peter Schauss
> --
> Please see the official ORACLE-L FAQ: http://www.orafaq.net
> --
> Author: Schauss, Peter
> INET: pschauss_at_northropgrumman.com
>
> Fat City Network Services -- 858-538-5051 http://www.fatcity.com
> San Diego, California -- Mailing list and web hosting services
> ---------------------------------------------------------------------
> To REMOVE yourself from this mailing list, send an E-Mail message
> to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in
> the message BODY, include a line containing: UNSUB ORACLE-L
> (or the name of mailing list you want to be removed from). You may
> also send the HELP command for other information (like subscribing).
>
>
-- Please see the official ORACLE-L FAQ: http://www.orafaq.net -- Author: <bulbultyagi_at_now-india.net.in INET: bulbultyagi_at_now-india.net.in Fat City Network Services -- 858-538-5051 http://www.fatcity.com San Diego, California -- Mailing list and web hosting services --------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Thu May 22 2003 - 15:56:56 CDT