SoftSpy SPYALOC job stream: Difference between revisions
(Created page with "The <code>SPYALOC</code> job stream allocates the Model 204 SoftSpy data sets SPYPROC, SPYDATA, and SPYTEMP during SoftSpy 7.5 installation. S...") |
m (add categories) |
||
(One intermediate revision by one other user not shown) | |||
Line 1: | Line 1: | ||
The <code>SPYALOC</code> job stream allocates the Model 204 SoftSpy data sets SPYPROC, SPYDATA, and SPYTEMP during | The <code>SPYALOC</code> job stream allocates the Model 204 SoftSpy data sets SPYPROC, SPYDATA, and SPYTEMP during SoftSpy 7.5 installation on Model 204 version 7.5. | ||
See the | See the [[SoftSpy installation guide]] for space requirements for SPYPROC, SPYDATA, and SPYTEMP, and modify this job accordingly. | ||
//SPYALOC PROC SYSINDX='SYSM.M204', | <p class="code"><nowiki>//SPYALOC PROC SYSINDX='SYSM.M204', | ||
// RLSE=V750, | // RLSE=V750, | ||
// SYSDA=SYSDA, | // SYSDA=SYSDA, | ||
Line 30: | Line 30: | ||
//* | //* | ||
//SPYALOC EXEC SPYALOC | //SPYALOC EXEC SPYALOC | ||
//* | //* </nowiki></p> | ||
[[Category:SoftSpy]] | |||
[[Category:Installation]] |
Latest revision as of 18:58, 23 April 2018
The SPYALOC
job stream allocates the Model 204 SoftSpy data sets SPYPROC, SPYDATA, and SPYTEMP during SoftSpy 7.5 installation on Model 204 version 7.5.
See the SoftSpy installation guide for space requirements for SPYPROC, SPYDATA, and SPYTEMP, and modify this job accordingly.
//SPYALOC PROC SYSINDX='SYSM.M204', // RLSE=V750, // SYSDA=SYSDA, // VOLSER=VOLSER //********************************************************************** //* JOB: SPYALOC CREATED ON: 26 May 2015 AT: 12:08:15 //* allocates and catalogs MODEL 204 libraries and product files //********************************************************************** //ALOC EXEC PGM=IEFBR14 //SPYPROC DD DSN=&SYSINDX..&RLSE..SPYPROC.M204, // DISP=(NEW,CATLG,DELETE), // DCB=(DSORG=PS,RECFM=F,LRECL=6184,BLKSIZE=6184), // SPACE=(6184,1000), // UNIT=&SYSDA,VOL=SER=&VOLSER //SPYDATA DD DSN=&SYSINDX..SPYDATA.M204, // DISP=(NEW,CATLG,DELETE), // DCB=(DSORG=PS,RECFM=F,LRECL=6184,BLKSIZE=6184), // SPACE=(6184,160), // UNIT=&SYSDA,VOL=SER=&VOLSER //SPYTEMP DD DSN=&SYSINDX..SPYTEMP.M204, // DISP=(NEW,CATLG,DELETE), // DCB=(DSORG=PS,RECFM=F,LRECL=6184,BLKSIZE=6184), // SPACE=(6184,112), // UNIT=&SYSDA,VOL=SER=&VOLSER // PEND //* //SPYALOC EXEC SPYALOC //*