I'm trying to import an older (~version 5) server into a MariaDB docker container.
I created a dump using the mysqldump command (with --all-databases), and when I try to import it I get the following error:
ERROR 1050 (42S01) at line 2071: Table 'user' already exists
I'm trying to import into a brand new container, using the standard command:
mysql -uroot -p < [sqldump].sql
I'm a novice when it comes to SQL and was wondering if I'm missing something obvious, or if there is some real incompatibility.
I'd really appreciate your advice.
Thanks!