A.UPDATE pets… B.SELECT….FROM pets C.INSERT INTO pets… D.ALTER TABLE pets…
A.STOP SLAVE; SET GLOBAL SQL_SLAVE_SKIP_COUNTER=1; START SLAVE B.STOP SLAVE; BEGIN; SET GTID_IGNORE="aaa-bbb-ccc-ddd-eee: 3"; COMMIT; START SLAVE C.STOP SLAVE; SETGTID_NEXT="aaa-bbb-ccc-ddd-eee: 3"; BEGIN; COMMIT; SET GTID_NEXT="AUTOMATIC"; START SLAVE D.STOP SLAVE; RESET SLAVE; BEGIN; SKIP NEXT GTID; COMMIT; START SLAVE
A.Tables with BLOB and TEXT columns cannot be partitioned B.Partitioning allows easier management of smaller data sets for certain queries C.Partitioning allows different columns to be stored in separate files D.The partitioning expression is an integer or function that returns an integer value or NULL value E.Partitioning is only available for those storage engines that implements it natively