Using mysql 5.1.41 and innodb
I am importing some data, but I can’t use the data load data, so I manually issue the insert instructions. I found it much faster to turn off auto-commit and the problem of, say, 100 insert statements and then commit, instead of implicit commit after each insert.
This made me wonder what limitations exist for how much data I can contribute to a transaction. Is there a limit on the number of operators, or is it related to the size in bytes, etc. ??
source share