Re: writing to database slows down
Posted by: John Payne
Date: November 10, 2006 09:46AM

With 400,000 records it sounds like you are doing a bulk dataload- doing it on the server gets rid of the network overhead, but you are absolutely right it defeats the purpose of client/server !

Dropping indexes speads up inserts on the server as the server justs needs to insert records and not maintain indexes, but at the cost of having little referenetial integrity, handy for bulk inserts !

Its sounds like it is the client rather then the server, but this depends on row size. If the network usage is low then this suggests that the client is not sending the inserts fast enough. Keeping connections open in code might help -saves closing and opening connections - connection pooling can help with this, using stored procedures to do the inserts increases write speed.

Options: ReplyQuote


Subject
Written By
Posted
November 09, 2006 08:41AM
November 09, 2006 08:47AM
November 10, 2006 02:06AM
Re: writing to database slows down
November 10, 2006 09:46AM
November 14, 2006 02:06AM
November 15, 2006 06:12AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.