How to check SQL backup integrity

5

I'm using MySQL , and to back up the banks, I'm using mysqldump . My question is if and how can I check if the file generated by the dump is intact automatically, without having to "upload" the dump into the bank?

    
asked by anonymous 28.08.2014 / 19:20

1 answer

2

Take a look at this documentation, it may help you:

Checksum is a feature to check the integrity and authenticity of packages.

link

    
02.09.2014 / 15:51