Extend IOVF

This topic provides sample JCL.
01 //PFP EXEC PGM=DFSRRC00,REGION=0M
02 //          PARM=(IFP,PFPSAMP,DBF#FPU0) 
03 //STEPLIB   DD DISP=SHR,DSN=BMC.PFP.LOAD 
04 //          DD DISP=SHR,DSN=IMSVS.RESLIB 
05 //PFPSYSIN  DD * 
06   EXTEND DBD=PFPSAMP,IAREA=PFPSAMP1, 07       POINTER_VALIDATION=QUICK,
08       
EXTEND_IOVF=(UNITS_OF_WORK,50)
09    
IC DSNAME='PFP.ICOPY.&DBD.&AREA(+1)', 
10       UNIT=TAPE,DISP=(NEW,CATLG)
 /*

Descriptive text for JCL to extend IOVF

Line no.

Comments

01-04

EXEC and STEPLIB DD statements for Fast Path online execution.

05

PFPSYSIN DD for Fast Path Online Suite control statements.

06

Area PFPSAMP1 is identified on the EXTEND statement, and is dynamically allocated from its dynamic allocation member in the IMSVS.DFSMDA data set in the STEPLIB concatenation.

07

If you have a license for the BMC Fast Path Analyzer/EP product, quick (checksum) pointer validation is performed on area PFPSAMP1 by default. This pointer validation is performed by default, even if you do not specify it explicitly.

08

Adding 50 UOWs to IOVF increases space for IOVF. Increasing space in this manner allows you to perform a DBD change of the UOW value at a later time.

09-10

During the area extend, an output image copy is taken simultaneously using standard storage and disposition parameters. The DBD and area name are substituted in the image copy data set name to create a unique name for each area.




This version of the documentation is no longer supported. However, the documentation is available for your convenience. You will not be able to leave comments.

Comments