I will like to overwrite the media name of my daily backup with the date so the media will be easily identified with the date the backup was made. How do you do this?
with ARCserve this only can be achieved automatically by using the GFS rotation scheme ( use rotation in the schedule tab and choose any GFS type of scheduling )
This is true, but only when you use blank media, otherwise ARCserve will use the same name as the tape had before.
So as a workaround you can also erase the media before backing up and use the * for destination name, but this causes extra tape handling.
The best way to do this is to setup a batchfile called erase.bat that looks similar to this.
=================================
@echo off
REM Change to the directory in which ARCserve is installed.
REM The "" marks are necessary if it is installed in a directory with 2 words.
cd "C:\Program Files\ComputerAssociates\ARCserve"
REM run the command to erase the tape
REM -z tells it to erase, -m1 tells it to only erase media label. There are two other options -m2 and -m3. They are the same as the erase options at the gui level.
tapetest -z -m1
=================================
If you add this batchfile to the pre/post section, it will erase the media label before the backup starts and you will always have the correct date for every backup.
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.