June 19, 2013

Post: InnoDB Full-text Search in MySQL 5.6 (part 1)

column that you defined for the underlying table, or it can be a sequence value generated by InnoDB when the table does not contain a suitable column,” but there are only a

Post: Flexviews - part 3 - improving query performance using materialized views

must be refreshed. Since an MV drifts over time from the “base tables” (those tables on which the view was built) there must be acan be materialized. The definition of the MV is stored internally, and represents the actual SQL that defines the view. A

Comment: Should you move from MyISAM to Innodb ?

… MEDIUMINT NOT NULL AUTO_INCREMENT, name CHAR(30) NOT NULL, PRIMARY KEY (grp,id))ENGINE=InnoDB; ### ERROR 1075 (42000): Incorrect table definition; there can be only one auto column and it must be defined as a key CREATE TABLE InnoDB_animals…