Thursday, September 11, 2008

Reducing database fragmentation

Extremely fragmented tables or indexes can harmfully affect performance. By using the following SQL statement you can identify those database objects that have over 10 extents allocated:

select * from dba_segments where extents > 10;
And if a table or index has more than 10 extents then rebuild it to fit into one extent. A table can only be rebuilt by import/export utility. But to do it we need a downtime from application team because database will be unavailable. We can proceed with the below mentioned steps to complete the activity successfully.

1. Export the table with argument COMPRESS=Y
2. Drop the table
3. Import the table.

The entire index can be rebuilt without preventing others from still using it.

Change the storage parameters to make the ‘next’ storage parameter larger (possibly double it). The initial storage value cannot be changed and later on rebuild the index


Please correct me if I am wrong, Friends.........

2 comments:

  1. Well that might have been true ... if it was 1995 and you were running Oracle7 using dictionary managed tablespaces on a server with 4Mb RAM and a shared pool of 256Kb...

    ReplyDelete
  2. With LMT it's not true all the way. And moreover B*tree Indexes with LMT rarely fragmented.

    ReplyDelete

How can I remove a URL on my website from the Google Index?

To remove a specific URL (for example, the page http://www.example.com/page4.html) of your own website from Google’s index, there are two ...