in reply to Database input speed question
In addition to what've been said, the following statement could also be considered if sensible to the program (multiple rows in one insert statement).
INSERT INTO table VALUES (val11,val2), (val21,val22), (val31,val32)
But the DB native batch facility is still the best bet especially if the insert doesn't have to be real time.
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Re: Database input speed question
by Mur (Pilgrim) on Jul 31, 2003 at 17:45 UTC | |
by chunlou (Curate) on Jul 31, 2003 at 19:23 UTC |