When using MySQL’s INSERT DELAYED statements, is there a way to force all Inserts to execute before continuing? Or alternatively to find out whether the Inserts are done yet?
When using MySQL’s INSERT DELAYED statements, is there a way to force all Inserts
Share
You can find out by doing a
For for more info
Note that
INSERT DELAYEDhas a few issues you need to be aware of please read the first link below for more info.Will force an immediate insert of the delayed rows.
See: http://dev.mysql.com/doc/refman/5.5/en/insert-delayed.html
and: http://dev.mysql.com/doc/refman/5.5/en/show-status.html