Avoid inserts in autocommit mode if possible To improve insert performance, avoid inserts in autocommit mode if possible. autocommit mode

Inserts can be painfully slow in autocommit mode because each commit involves an update of the log on the disk for each INSERT statement. The commit will not return until a physical disk write is executed. To speed things up: