Introduction
In the previous post we described the situation when
TwinDB recovery toolkit can be used to recover
accidentaly dropped table in the case
innodb_file_per_table=OFF setting.
In this post we will show how to recover MySQL
table or database in case innodb_file_per_table is ON. So, let’s
assume that mysql server has setting
innodb_file_per_table=ON. This option tells
InnoDB to store each table with user in a separate data
file.
We will use for recovery test the same database sakila, that was used in the previous post.
root@test:/var/lib/mysql/sakila# ll total 23468 drwx------ 2 mysql mysql 4096 Jul 15 04:26 ./ drwx------ 6 mysql mysql 4096 Jul 15 04:26 ../ -rw-rw---- 1 mysql mysql …[Read more]