Comments - Full Backup and Restore with Mariabackup
Content reproduced on this site is the property of its respective owners,
and this content is not reviewed in advance by MariaDB. The views, information and opinions
expressed by this content do not necessarily represent those of MariaDB or any other party.
Making a full backup mariabackup --backup --target-dir=/backup/ --user=root --password=pass mariabackup --prepare --target-dir=/backup/
Produces the expected copy of all DB artifacts.
mariabackup --copy-back --target-dir=/var/mariadb/backup/
Also works ALMOST as expected. Everything is restored, BUT all tables (like tableName) with camelCase names throw an error: SQL Error [1932] [42S02]: (conn=4) Table 'database.tablename' doesn't exist in engine.
Does anyone have any idea how to fix/workaround this?
Thank you in advance!