MySQL Forums
Forum List  »  Replication

Re: InnoDB Slave not updating
Posted by: Rick James
Date: November 02, 2012 11:36PM

Proper use of AUTO_INCREMENT -- either of these:

INSERT db.table (ID, VALUE) values (NULL, 2);
INSERT db.table (VALUE) values (2);

Options: ReplyQuote


Subject
Views
Written By
Posted
4631
October 11, 2012 02:35AM
1470
October 11, 2012 10:44PM
1408
October 12, 2012 06:12AM
1535
October 26, 2012 07:58AM
1241
October 27, 2012 06:15AM
1174
October 31, 2012 09:06AM
969
November 01, 2012 10:43PM
1103
November 02, 2012 02:07AM
Re: InnoDB Slave not updating
1083
November 02, 2012 11:36PM


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.