I want to backup my encrypted database (database level not column level) with this command:
gbak myDb.IB myDb.bak -b -user sysdba -pass masterkey -encrypt mySep -sep myseppass -service service_mgr
But it doesn't work. Here is the error message: gbak: ERROR: encryption mySep is not password-protected What is the problem?
I have created an encrypted database with Interbase with these commands:
alter database set system encryption password 'myseppass' external;
CREATE ENCRYPTION mySep FOR DES WITH LENGTH 56 BITS FOR DES WITH LENGTH 56 BITS password system encryption password INIT_VECTOR RANDOM;
GRANT encrypt on encryption mySep to SYSDBA;
With IBConsole, i can connect to the database, and in the properties, i see that it is encrypted.
Thank you for reading.