Fatal error : Attempted to restore into non-empty destination database
Command used fdbrestore start -r
Fatal error : Attempted to restore into non-empty destination database
Command used fdbrestore start -r
The restore tool does not support restoring a backup into a database that isn’t empty, so you will first need to clear all of the data out of your database if you want to restore into it. This can be done in fdbcli by executing the following command:
fdb> writemode on; clearrange "" \xff
Of course, don’t execute this command unless you are sure you don’t need the data in the database.
I tried the same but still shows same error
Might you have an application still running that is writing to the database?
There is no application running I am just testing with document layer running on top of my foundation database , Is that makes a difference ?
The document layer could very well be writing keys to the database and interfering with your attempt to restore. Try stopping the layer, clearing the database, running your restore, and then restarting the document layer. Hopefully that sequence should work.
You are right after stopping document layer , I was able to restore the DB , Thanks
Resurrecting this thread. I am unable to perform a restore in spite of clearing all keys, verifying it again with a getrange. I don’t have a document layer running at all. This is on 7.1
Never mind, my clearrange command had a typo.