To: rudi 

On Wed, 15 Dec 1999, rudi wrote:

> Hi Ari,
> 
> I have used oracle 7.2.3. I have problem some index, some segment on the
> table index have corrupted. How to do reindex that table.
> Thank you for your attention.
> 
> 
> regards
> 
> rudy
> 

In Oracle8, you can issue "ALTER INDEX xxx REBUILD;".

Since you are in Oracle7, you can drop and recreate the index:

1) DROP INDEX xxx;

2) CREATE INDEX xxx ON table_name (column1, column2, ....)
   TABLESPACE tablespace_name
   STORAGE (INITIAL initial_size, NEXT next_size);

In Oracle8i, you can do an online index rebuild:

ALTER INDEX xxx REBUILD;

Best regards,

-Ari Kaplan
Independent Oracle DBA Consultant

<-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><->
<-> For 340+ Oracle tips, visit my Web Page:                      <->
<->                                                               <->
<->             http://www.arikaplan.com                          <->
<->                                                               <->
<->             email: akaplan@interaccess.com                    <->
<-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><-><->

Back to Ari Kaplan's Home Page

Kaplan's Home Page