2

本文建议在 MYSQL 数据库中恢复数据的方法: http ://www.mysqlperformanceblog.com/2012/02/20/how-to-recover-deleted-rows-from-an-innodb-tablespace/

我们如何删除敏感信息并确保无法使用任何方法(例如上面文章中描述的方法)进行恢复?也对删除行而不是整个表空间感兴趣。

4

1 回答 1

0

要从 mysql 中永久删除表,使其不可恢复(在某种程度上)。请执行以下操作。

1.delete the InnoDB main table space – ibdata1 – and redo logs – ib_logfile*.
2.restart mysql after step 1.
于 2013-11-05T06:06:59.960 回答