Consultor Eletrônico



Kbase P4043: Fathom: Incremental backup as a job from template does not r
Autor   Progress Software Corporation - Progress
Acesso   Público
Publicação   8/22/2003
Status: Unverified

FACT(s) (Environment):

Fathom

SYMPTOM(s):

Fathom 2.0A1B

Incremental backup as a job from template does not run

"You have not supplied a parameter for argument -io (1403)"

CAUSE:

Bug 20020628-012 fixed for the FCS release. The code in backup.pl perl script for incremental backup is wrong.

FIX:


In the <fathom_installation_dir>\perl\scripts\backup.pl perl script file (open it with a text editor) find the following code (first make a backup of the file):

if ($FM_BKPINCREMENTAL eq "true")
{ $CMDARGS .= " incremental";
if ($FM_BKPINCREMENTALOVELAP eq "")
{ $CMDARGS .= " -io $FM_BKPINCREMENTALOVELAP"; }
}

and put the following one instead:

if ($FM_BKPINCREMENTAL eq "true")
{ $CMDARGS .= " incremental";
if ($FM_BKPINCREMENTALOVERLAP eq "")
{ $CMDARGS .= " -io 0"; }
else
{ $CMDARGS .= " -io $FM_BKPINCREMENTALOVERLAP"; }
}

and save the file.