in reply to Re: Benchmarking Oracle - stored proc or insert
in thread Benchmarking Oracle - stored proc or insert

AutoCommit, from what I understand, tends to slow things down (it has to commit, then flush the 'pending changes' buffer -- or whatever you call it -- on each insert). I have an app that inserts 300K rows daily, so what I did is commit every 5000 rows (and one at the end of the insertion loop, just to make sure =). That sped things up significantly. Using bind_columns also made a measurable (positive) difference.

Philosophy can be made out of anything. Or less -- Jerry A. Fodor