i'm trying to convert a big table (approx 200,000 rows) from type MYISAM to INNODB but i found problem after converting the table type.
I tried 2 ways to convert it,
TblA - myISAM (original table with 200,420 rows)
TblB - (to be INNODB table)
1. Copy structure of TblA to TblB, alter TblB to INNODB type, then insert records from TblA into TblB - the error is, TblB (203,373 rows) becomes more rows than TblA after these operations!
2. Copy structure + data of TblA to TblB, then alter table type of TblB to INNODB type - the error is, TblB (1xx,xxx rows) becomes less rows than TblA now!
I don't know what's wrong with these operations, after all, i cant get a INNODB type table that has same rows number with the original table... pls help...
thanks in advance...
I tried 2 ways to convert it,
TblA - myISAM (original table with 200,420 rows)
TblB - (to be INNODB table)
1. Copy structure of TblA to TblB, alter TblB to INNODB type, then insert records from TblA into TblB - the error is, TblB (203,373 rows) becomes more rows than TblA after these operations!
2. Copy structure + data of TblA to TblB, then alter table type of TblB to INNODB type - the error is, TblB (1xx,xxx rows) becomes less rows than TblA now!
I don't know what's wrong with these operations, after all, i cant get a INNODB type table that has same rows number with the original table... pls help...
thanks in advance...