2
I gave a delete on some files from table, it has some way to recover?
I heard about the "flashback", but the little I researched is only for oracle.
2
I gave a delete on some files from table, it has some way to recover?
I heard about the "flashback", but the little I researched is only for oracle.
4
If you have the logs active binaries, you can make use of utility program mysqlbinlog
to generate an SQL file and then open it and locate the lost data:
mysqlbinlog meuficheiroBinarioDeLog > minhaConsulta.sql
Other than this, only if you have backups of your database.
Browser other questions tagged mysql sql
You are not signed in. Login or sign up in order to post.