Is there a way to retrieve data from a MySQL database?

2

I gave a delete in some files of the table, have some way to recover? I heard about flashback, but for the little I researched it is only for oracle.

    
asked by anonymous 16.10.2014 / 22:54

1 answer

4

If you have active binary logs, you can use the mysqlbinlog to generate a SQL file and then open it and find the missing data:

mysqlbinlog meuficheiroBinarioDeLog > minhaConsulta.sql

Excluding this, even if you have backups of your database.

    
17.10.2014 / 01:04