Answer Posted / deepak gairola
SYPRINT, SYSOUT, SYSUDUMP, SYSTSIN, SYSPUNCH etc... are the
special DD names... Please find the related info below:
SYSPUNCH - in this step you will get output from
translator, PASS it to compiler
The temporary data set containing object modules assembled
by running the job stream produced by system generation or
the GENERATE command. These modules are not installed in
the distribution libraries at ACCEPT time.
SYSOUT - The SYSOUT parameter identifies a data set as
a "SYStem OUTput" data set, consisting of printed or
punched output that will managed by JES2 or JES3. The
SYSOUT parameter names the output class to which the
printed or punched output belongs and optionally, an
external writer, or the forms on which the data set is to
be printed or punched, or it can refers to a JES2 /*OUTPUT
statement for processing parameters.
SYSIN & SYSPINT - SYSIN and SYSPRINT are automatically
provided by the compiler as file names. For this reason,
these two files do not have to be declared or explicitly
opened. For SYSPRINT, default attributes of STREAM, OUTPUT,
and (even though SYSPRINT contains more than 7 characters)
EXTERNAL are provided. Unless SYSPRINT is declared or
opened as something other than STREAM OUTPUT EXTERNAL,
PRINT is also provided as a default attribute. The names
SYSIN and SYSPRINT are not reserved by the compiler as file
names; They can be explicitly declared and used for other
purposes.
SYSABEND, SYSMDUMP, & SYSUDUMP
Use a SYSABEND, SYSMDUMP, or SYSUDUMP DD statement in a job
step to direct the system to produce a dump. The system
produces the requested dump:
- If the step terminates abnormally.
- If the step starts to terminate abnormally, but system
recovery
Procedures enable the step to terminate normally.
SYSABEND
Produces a dump of user and system areas; this dump
contains all the areas dumped in a SYSUDUMP, plus:
- The local system queue area (LSQA), including subpools
229, 230, and 249
- The input/output system (IOS) control blocks for the
failing task.
The dump is formatted, so that it can be printed directly.
SYSMDUMP
Produces a dump of the system areas and the program's
address space. The dump is unformatted and machine-
readable; to be used, it must be printed by the interactive
problem control system (IPCS).
SYSUDUMP
Produces a dump of user areas. The dump is formatted, so
that it can be printed directly.
SYSTSIN
Defines the DSN commands to connect to DB2 Database and to
run a program
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
How can the submitting users racf authority be overridden in a job stream?
how do you code a null statement?
Differentiate between addressing mode and run mode.
In sms datasets, what is the function of the dd avgrec keyword?
Is condition checking possible in jcl?
What is multithreading in jcl?
What is the function of job statement in jcl?
If a (+1) generation dataset is created in the first step of a job, how can it be referenced in later steps of the same job for input?
Explain the function of dd disp parameter?
Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE
How jcl work to handle various input output file operations?
what EXEC statement is and what is the syntax of EXEC statement used in JCL?
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
what is use of space parameter in dd statement?
1) SORT FIELDS=(20,4,CH,D,10,3,CH,D) OUTREC FIELDS=(7:20,4,C' FUTURE ',20,2,10,3,1Z,1,9,13,7, 24,57,TRAN=LTOU,6X'FF') This example illustrates how a fixed-length input data set can be sorted and reformatted for output. The SORTIN LRECL is 80 bytes. The reformatted output records are fixed length with a record size of 103 bytes. SOLRF (the IBM-supplied default) is in effect, so unless the SORTOUT LRECL is specified or available, it will automatically be set to the reformatted record length of 103. in the above example i have some doubts that a) sort fields=(20,4,CH,D,10,3,CH,D) -what exactly it does and this fields related to output record fields or input record fields b)outrec used to refprmat the records after sorting that means could please reply me as soon as possible Thanks. Venkat