How to make queries to a mysql backup without having to raise this one?

1

I have a DB that has backups every 24hr, in which a data was modified and I need to verify when the change occurred and I need to be raising each backup and make the query to see if on that day it suffered the modification or not and that's why I look for the way to be able to do it automated and I would like to know:

Is there any way to make queries to the backups so that you do not have to be raising each backup to send the query, delete that DB and do the same with the following backup?

    
asked by Jorge Abraham Jimenez Molina 06.01.2017 в 17:48
source

1 answer

0

It seems to me that you can not, since a .sql what you really have are queries, mysql what it does is read and execute each of them.

The only thing you could do is what you mention, raise the backup, make your queries, delete the database and re-upload the current database.

    
answered by 06.01.2017 в 18:08