SoftSpy SPYALOC job stream: Difference between revisions

From m204wiki
Jump to navigation Jump to search
(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...")
 
No edit summary
Line 1: Line 1:
The <code>SPYALOC</code> job stream allocates the Model 204 SoftSpy data sets SPYPROC, SPYDATA, and SPYTEMP during [[SoftSpy installation guide|SoftSpy 7.5 installation]].  
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 comments in the code below for instructions on editing <code>SPYALOC</code>.
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>

Revision as of 18:36, 26 May 2015

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 //*