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
1600
September 21, 2016 07:50AM
950
September 21, 2016 10:46AM
879
September 21, 2016 10:53AM
Re: How to track page splits
849
September 25, 2016 10:44AM
887
September 29, 2016 08:14AM
789
September 29, 2016 11:17AM
843
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.