I'm new to monet. When it comes to dump/restore activities I would like to use the same functionality of mysqldump
. I tried the following:
mclient -u monetdb -lsql --database=my_db --dump > ~/my_db.sql
However, when restoring with:
mclient -u monetdb -lsql --database=my_db ~/my_db.sql
I came across the following error:
CREATE SEQUENCE: name 'seq_6620' already in use
current transaction is aborted (please ROLLBACK)
What am I missing? Does this mean I can only feed dumped data to an empty db? Thanks in advance for your hints.