Downloading and creating the Model 204 DEMO database files (IBM z/OS only)
To set up Model 204 demonstration database files on your system, follow these steps.
- On the Rocket M204 Customer Care page, scroll down and click the "Download SOUL files" link. Download the DEMODB.DUMP.TERSE file, which contains the DEMODB tersed data set.
- Upload DEMODB.DUMP.TERSE to a TERSE format file with these characteristics:
lrecl=1024 blksize=6144 recfm=fb dsorg=ps
- Process the tersed file with the following JCL to UNPACK it to a PDS:
//Jobcard... //*************************************************************** //*After you Download and upload the tersed DEMODB file * //*This JCL will unpack it into a DEMODB PDS * //*The PDS consists of dump files for all files in the DEMO DB * //*************************************************************** //STEP1 EXEC PGM=TRSMAIN,PARM=UNPACK,REGION=0M //INFILE DD DSN=&SYSINDX..&RLSE..DEMODB.DUMP.TERSE,DISP=SHR //OUTFILE DD DSN=&SYSINDX..&RLSE..DEMODB.DUMP, // DISP=(NEW,CATLG),UNIT=3390,DSORG=PO, // SPACE=(CYL,(10,10,10),RLSE) //SYSPRINT DD SYSOUT=* /* //
This creates the DEMODB.DUMP file, which is a PDS containing dump files of all data sets in the DEMO database: CLIENTS, CLAIMS02, CLAIMS03, DAILY, and VEHICLES.
You will use these dump files as input to the JALDEMOJ job in the next step. - Run the JALDEMOJ job, which defines and restores the DEMO Database files from the DEMODB dump file.