Hello,
i needed to use the backup of the .db to get my scan results back that I collected over months.
Currently, the backup.db is overwritten on ending Everything.
=> .db lost => months of scanning time lost
Would it be possible to have at least 5-10 backup versions back instead of only one?
Best,
Fred
Backup of .db concept flaw
Re: Backup of .db concept flaw
You can load your Everything backup db with:
Everything.exe -db <everything.backup.db> -read-only
Currently, the db backup is only designed to prevent reindexing when the last db wasn't correctly flushed to disk.
I recommend manually making a backup of your Everything.db
or setup a script to do this daily, weekly, monthly etc...
Everything.exe -db <everything.backup.db> -read-only
Currently, the db backup is only designed to prevent reindexing when the last db wasn't correctly flushed to disk.
I recommend manually making a backup of your Everything.db
or setup a script to do this daily, weekly, monthly etc...
Re: Backup of .db concept flaw
A simple backup utility, BACKUP9.EXE.
(Each time a desktop shortcut is clicked) backup all the files in the c:\123\mp\ directory to the directory c:\dev\backup\out\.
Each time it is run, it will update any changed files to \backup\out\ while maintaining the last 9 copies of each updated file.
(Each time a desktop shortcut is clicked) backup all the files in the c:\123\mp\ directory to the directory c:\dev\backup\out\.
Each time it is run, it will update any changed files to \backup\out\ while maintaining the last 9 copies of each updated file.
Code: Select all
backup9.exe C:\123\MP\*.* C:\DEV\BACKUP\OUT
Re: Backup of .db concept flaw
Thank you for the hint.
Although, the effort to introduce a ring buffer of some configurations may not be that big...
A separate tool or script sounds a bit "workaroundish"
Imagine every tool on your PC needs that...
Although, the effort to introduce a ring buffer of some configurations may not be that big...
A separate tool or script sounds a bit "workaroundish"
Imagine every tool on your PC needs that...