in reply to DBD::Oracle insert row performance
I have no experience with Oracle, but the basic principle I mentioned above is true for all SQL DB's.
Update: A DB transaction leaves the HD in a known state - no matter what happens during the transaction. This requires multiple writes and reads with associated rotational hard disk delays. A million row insert may not take much longer than a single row insert. That is because of all of this "book keeping" is related to number of transactions, not the amount of data or the number of rows.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re^2: DBD::Oracle insert row performance
by pme (Monsignor) on Jan 03, 2021 at 10:44 UTC |