Provide the ability to identify classes and mapfiles that require reorg
Refer to PAR 65947.
This would allow for JADECare deployments to record which classes / mapfiles were reorged in this deployment. As typically a test deployment against an environment that mimics the production environment is done prior to the production deployment, this information can be used to forewarn of the disk requirement and provide some clue as to the length of time required for the production deployment.
Pseudo-code:
foreach class in Class.instances do
if class.needsReorg then
if not fileSet.includes(class.getDbFile()) then
fileSet.add(class.getDbFile());
endif;
endif;
endforeach;
HistoricalComments
John Richards 13/06/2018 9:02:49 AM Unfortunately the panel felt that the suggested code was sufficient. I'll close the JEDI.
|