The Compaction Job makes heavy use of temp files. As such an alternate location for these DBI* files with more disk space than currently available may be needed.
OpenEdge Management perl scripts for jobs are stored in: ${fathomInstallDir}/perl/scripts
Edit the data compaction job: dataCompact.pl
The following line contains the connection parameters for the job: $rc = system("$CMD -db \"$FM_DBPATH\" -Bt 32000 -b -p \"$DOTP\"");
Add the Client temporary directory location other than the work directory which is used by default:
$rc = system("$CMD -db \"$FM_DBPATH\" -Bt 32000 -s 80 -T <fulltemppath> -b -p \"$DOTP\""); |