This issue is not because of corrupt database but rather the PHP upload size limit. It is suggested to increase the values of the following variables in php.ini
:
upload_max_filesize=64M
post_max_size=64M
You may also want to increase the max_exection_time
to a longer value for larger databases so it does not timeout while uploading.
Save you changes to the file and restart your PHP server.