Author Andriy Lysyuk.
Introduction
In the previous post, we described a situation when
the UnDrop For InnoDB toolkit can be used to recover
an accidentally dropped table with
innodb_file_per_table=OFF
.
In this post, we’ll show how to recover MySQL tables or databases
if innodb_file_per_table
is ON
. This
option tells InnoDB to store each table with a user in a separate
data file.
For the recovery test, we’ll use the same sakila database that we used in the previous post.
root@test:/var/lib/mysql/sakila# ls …
[Read more]