
Printing Datasets (TSIDDMP)
User Reference
Connectivity Systems, Inc.—Copyright © 2006
Use Pursuant to Company Instructions
8-25
Examples The following example prints the entire contents of a catalog-controlled
disk dataset in hex format. Control statements are not required.
// JOB TSIDDMP DUMP DISK DATASET IN HEX
// DLBL INPUT,'input.data.set'
// EXEC TSIDDMP
/*
/&
The following example prints the first 100 records of a file. The printout
will be in character format (CTLCHAR forces CHARONLY).
// JOB TSIDDMP PRINT BLOCKED REPORT TAPE IN CHARACTER FORMAT
// TLBL INPUT,'input.data.set'
// EXEC TSIDDMP
CTLCHAR,RECS=100
/*
/&
The following example prints a Start Track 1 disk dataset using an
alternate DTF name, in character-only format, with the position scale
suppressed. Only records containing the characters 10794 in positions 1
through 5 will be selected. End of file and end of job will be forced as
soon as high values are found in positions 7 through 9. The record format,
record size, and block size information are required for an uncataloged
disk dataset.
// JOB TSIDDMP SELECTIVE DUMP OF ST 1 FILE
// DLBL TPDATA,'input.data.set'
// EXTENT SYS005,POOL01,1,0,1,300
// EXEC TSIDDMP
INNAME=TPDATA
RECFM=F,BLKSIZE=4000,LRECL=80
CHARONLY,NOSCALE
SEL=1,5,EQ,C,10794
FEOF=7,3,EQ,X,FFFFFF
/*
/&
Kommentare zu diesen Handbüchern