DBAsupport.com Forums - Powered by vBulletin
Results 1 to 3 of 3

Thread: rebuild in production

  1. #1
    Join Date
    Nov 2000
    Posts
    416
    I would like to initiate a rebuilding index task in our Production Database. Just want to verify:

    Does issue this is OK for each table:

    alter index I_INDIVIDUAL_SURNAME rebuild unrecoverable tablespace NS_BIG_INDEXES
    /


    what will happen to first and next extent sizes? Do I need to add Storage parameter to better organize the indexes?

    Is it possible the performance degrade instead of boost?

    can I run the script during working hours?

    Any other consideration? It is a mission critical production DB 8.0 on Win NT and its about 20 GB.





    An ounce of prevention is worth a pound of cure

  2. #2
    Join Date
    Jan 2001
    Posts
    3,134
    If this is mission critical I would take a backup of the index DDL first.
    If you are going to do this online than you will need roughly twice the space for the new index. Oracle will create the new index, than drop the old one after it is in place. So if you have a 100M index you will need a 200M tablespace to re-build it online.

    MH
    I remember when this place was cool.

  3. #3
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    Your index will keep their INITIAL and NEXT values and NOT inherit those of the tablespace. When in doubt, specify these values.

    If you have adequate resources, you can build in PARALLEL. (I think you can do this in 8.0)
    Jeff Hunter

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  


Click Here to Expand Forum to Full Width