Kbase 20488: The script for backing up and emptying after-image extents does not work or loops
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  16/10/2008 |
|
Status: Unverified
FACT(s) (Environment):
UNIX
SYMPTOM(s):
The script for backing up and emptying after-image extents does not work or loops
Using rfutil -C AIMAGE EXTENT FULL message 3804 is returned.
Database has no full extents. (3804)
CAUSE:
This is a known issue.
rfutil should return no output when there are no full after-image extents.
FIX:
The workaround is to change the script to test for this value and exit accordingly:
aifile="zzz"
while [ "$aifile" != "Database has no full extents. (3804)" ]
do
aifile=`_rfutil test -C aimage extent full`
if [ "$aifile" != "Database has no full extents. (3804)" ]
then
rfutil test -C aimage extent empty $aifile
fi
done