Getting error in RESTORE command.
I found that in new MySQL server version, there is option RESTORE to create database and load data from image file which is created by BACKUP DATABASE command.
So instead of old backup & restore process using .sql file I want to use new commands.
I have taken backup of my database using below command.
mysql>BACKUP DATABASE <DatabaseName> TO 'BackupFileName.xyz'
And then try to restore using below command.
mysql>RESTORE FROM 'BackupFileName.xyz'
But I'm getting error "Could not restore table 'DatabaseName'.'TableName' and the Error Code is 1677
Also gone thru D.7. Restrictions on BACKUP DATABASE and RESTORE topic but couldn't find any solution.
Please provide inputs for the same.