|
REORG - UNIX
| In order to determine the files that have errors:
Type ls-la *.er
Type reorg (filename with no extension) -rwxrwxrwx 1 root other 2048 Apr 23 2001 prtass.nx The reorg process should indicate that it terminated successfully. The chkisam process will follow and should indicate that zero files had errors. The reorg procedure will display a counter as it reads records and writes them out to the file. After the reorg is finished, you should be able to continue with normal operations. If you have any errors after the reorg, you will need to call MC for further assistance. |
| REORG SCRIPTS
reorg This is the reorg script file used for UNIX. umask 000 if [ -f $1.xd ] /mc/cobol/icreorg -p t $1 exit reorgall This is the script that is used for the full system cleanup. umask 000 dir=`pwd` ls > mca1.temp for i in $MCA; do /mc/cobol/icreorg -pV 5 t $FILE else echo "REORG FAILED ! on $FILE" # chkisam $FILE |