Is it possible to create a unique ibdate file for each database created in InnoDB?
Because if I have several databases made in InnoDB, all of them will be stored in ibdata1, ibdata2, etc.
Because of this, it is difficult to simply restore 1 database, and not all clients that have InnoDB. MyISAM creates several .frm, MYD, and MYI files for each table, which simplify recovery.
How can we make sorting that recovery easier in InnoDB. Should I make a DUMP.sql file or another solution?
thanks
source share