Subject something changes after backup & restore
Author Sergio
Hello! I use FB 2.5

In a database with this domain:

CREATE DOMAIN ID AS
NUMERIC(9,0)
NOT NULL;

when I backup & restore, the domain (in the restored database) changes to

CREATE DOMAIN ID AS
NUMERIC(9,0);

It may be a bug? or is something I'm doing grong?

I use this command to do the backup

C:\"Archivos de programa"\Firebird\Firebird_2_5\bin\gbak D:\DATABASE.fdb DATABASE.fbk -user sysdba -password newpassword -Limbo -v -y log.txt

and this to restore

C:\"Archivos de programa"\Firebird\Firebird_2_5\bin\GBAK -create -v DATABASE.fbk DATABASE_REC.fbk -y log.txt -user sysdba -password newpassword -n -r -p 4096

Thanks!

Sergio