otm33
January 2, 2026, 5:34pm
48
Yup, that’s a huge table… Removing it is a workaround, but the backup script may get stuck with the binary data from the geometry table.
You can also try this
If removing manually memories tables fails, I would try removing them within mariadb (via CLI or phpmyadmin).
mysql -u root
# MariaDB shell
CREATE DATABASE remove_memories;
EXIT;
# bash shell
mysql -u root remove_memories < apps/nextcloud/backup/db.sql # import in new created remove_memories db
mysql -u root
# mariaDB shell
USE remove_memories;
SHOW TABLES;
DROP TABLE IF EXISTS oc_memories... # all the memories tables...?
EXIT;
# bash shell
mysqldump -u root remove_memories > /home/yunohost.…