Kbase P114430: Error (6819) when adding storage area, AI extents have been priorly added
Autor |
  Progress Software Corporation - Progress |
Acesso |
  Público |
Publicação |
  21/03/2006 |
|
Status: Unverified
FACT(s) (Environment):
Progress 9.x
OpenEdge 10.x
SYMPTOM(s):
Error (6819) when adding storage area
Area name
umber mismatch:
Test3:9
After Image Area 1:9
Error occurred on line 1. (6819)
After-Image (AI) extents have priorly been added
CAUSE:
This is expected behavior.
The PROSTRCT ADD failed when adding the storage area, because the area number is already taken by the After-Image extents.
For example:
When adding 3 After-Image extents to the following database,
b .
d "Schema Area":6,32 .
d "Test1":7,32 .
d "Test2":8,32 .
the After-Image extents takes the area numbers 9, 10 and 11.
This can be checked by running the code below:
FOR EACH _Area NO-LOCK:
DISPLAY _Area.
END.
Therefore, adding a storage area 9 will fail because it is already taken by the After-Image extent.
FIX:
To run the PROSTRC ADD successfully, another storage area number needs to be allocated to the new storage area which has to be added.
In the example above, since 3 After-Image extents have been added, the next storage area number available is 12.
The "Add.st" file becomes:
d "Test3":12,32 .