MySQL Forums
Forum List  »  InnoDB

Re: How to track page splits
Posted by: Peter Brawley
Date: September 25, 2016 10:44AM

Then nothing to do with "page splits".

If you're counting on auto_increment to provide monotonically incrementing values, forget it. Auto_increment doesn't, can't do that. If you need monotonic sequentiality, code it.

To prevent clients from arbitrarily setting auto_increment values, don't gove them raw acces to Insert and Update commands, eg write Before Insert Triggers that override user values on such columns by setting them Null.

Options: ReplyQuote


Subject
Views
Written By
Posted
1579
September 21, 2016 07:50AM
941
September 21, 2016 10:46AM
872
September 21, 2016 10:53AM
Re: How to track page splits
841
September 25, 2016 10:44AM
879
September 29, 2016 08:14AM
782
September 29, 2016 11:17AM
837
October 02, 2016 12:53PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.