Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: HELP: Inefficient insert

Re: HELP: Inefficient insert

From: Peter Chan <chanp_at_nortelnetworks.ca>
Date: Wed, 16 Dec 1998 10:12:59 -0500
Message-ID: <3677CDFB.6C34C28A@nortelnetworks.ca>


There are a few things you can try.

  1. If you can drop all indexes on the table, you should do so, then insert all of the information into the table and then recreate the indexes again. This will definitely speed up the insert because every insert, ORACLE has to resort the index for each entry.
  2. From your explain plan numbers, it seems that your buffer cache miss ratio is quite high, you can lower this cache miss ratio by increasing the initialization parameter DB_BLOCK_BUFFERS.

I hope this helps. Received on Wed Dec 16 1998 - 09:12:59 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US