Making incremental backups
To make an incremental (“differential”) backup, specify a backup level greater than 0.An incremental backup of level N
always contains the database mutations since the most recent level N-1
backup.
Examples:
One day after the full backup (level 0), you make one with level 1:
C:\Data> nbackup -BACKUP 1 inventory.fdb inventory_2-Mar-2006.nbk
This backup will only contain the mutations of the last day.
One day later again, you make another one with level 1:
C:\Data> nbackup -BACKUP 1 inventory.fdb inventory_3-Mar-2006.nbk
This one contains the mutations of the last two days, since the full backup, not only those since the previous level-1 backup.
Note
|
The previous incremental backup of any level must be completed before the start of the next incremental backup, otherwise |
A couple of hours on we go for a level-2 backup:
C:\Data> nbackup -BACKUP 2 inventory.fdb inventory_3-Mar-2006_2.nbk
This youngest backup only contains the mutations since the most recent level-1 backup, that is: of the last few hours.