Hi,
I run following command to take a backup of my instance:
[MySQL Enterprise Backup version 4.0.3 Linux-4.1.12-37.4.1.el6uek.x86_64-x86_64 ]
mysqlbackup --user=root -p --host=127.0.0.1 --backup-dir=/nfsbackup/bk_meb --use-tts --with-timestamp --include='.*' --compress --compress-level=9 --backup-image=mysql.mib backup-to-image
Is possible restore schema changing the name, like as tables:
mysqlbackup --user=root -p --host=127.0.0.1 --backup-dir=/nfsbackup/bk_meb/2017-01-25_12-34-00 --backup-image=mysql.mib --datadir=/DATA1/data --uncompress --include-tables="mydb\.mytable" --rename="mytable TO mytable_new" copy-back-and-apply-log
If not, is possible to restore the table without foreign keys?
Thank you
regards