From: Peter M. <pm...@fr...> - 2009-01-24 22:43:12
|
On Fri, Jan 16 2009, Stelian Pop wrote: > It does look simpler but the advantage of the tower of Hanoi way is that > it minimizes the number of tapes you need to restore in case of data > failure. Hello, Another strategy is, to minimize the occupied space of the backups: if dump-(n) smaller than dump-(n+1) then do the dump of level n and delete all higher levels else try the same with n <- n + 1 (until n = 9) I attach a script, that uses this principle. Cheers, Peter -- http://pmrb.free.fr/contact/ |