I have a database that stores content from several years ago in various tables.
All the tables are currently in MyISAM
and I want to pass them all to InnoDB
.
How could I do it without risk of data loss?
I do not put what I have tried so far, because in fact I have not tried anything, it is a delicate step and I do not want to put the data at risk.
Although MyISAM
does not handle restrictions, and now I do intend to use restrictions (when migrating them to InnoDB
), there are no problems, in the process of inserting data in the table it has been observed that there are no records orphans (although there may be two or three). What I want to say is that the issue of restrictions would not be a major difficulty.
Thanks for the help.
P. D.: I would appreciate the response of someone who has experience in this type of migration.