COM3310 Parameters Flashcards

1
Q

DD Parameter - DSN=

A

The name of the data set

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

DD Parameter - DISP=

A

Data set disposition (whether the data set needs to be created or already exists)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

DD Parameter - SPACE=

A

Amount fo disk storage requested for a new data set

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

DD Parameter - SYSOUT=

A

Define a print location (and the output queue or data set)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

DD Parameter - VOL=SER=

A

Volume name, disk name or tape name

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

DD Parameter - UNIT=

A

System disk, tape or special device type (local name)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

DD Parameter - DEST=

A

Routes output to a remote destination

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

DD Parameter - DCB=LRECL=

A

Logical Record Length, which is the number of bytes/characters in each record

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

DD Parameter - DCB=RECFM=

A

The record format, which can be fixed, blocked, variable, and so on

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

DD Parameter - DCB=BLOCKSIZE=

A

Stores records in a block of this size, typically a multiple of LRECL. A value of 0 will let the system pick the best value.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

DD Parameter - DCB=DSORG=

A

This is the data set organisation, which can be sequential, partitioned, and so on

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

DD Parameter - LABEL=

A

The tape label expected. A tape can store multiple data sets; each data set on the tape is in a file position. The first data set on tape is file 1.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

DD Parameter - DUMMY

A

Results in a null input

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

DD Parameter - *

A

Input data or control statements follow. This Is a method of passing data to a program from the JCL stream.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

DD Parameter - *,DLM=

A

Everything following this statement is data input (even //) until the two alphanumeric or special characters specified are encountered in column 1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

JOB Parameter - REGION=

A

Requests specific memory resources to be allocated to the job

17
Q

JOB Parameter - NOTIFY=

A

Sends notification of job completion to a particular user, such as the submitter of the job

18
Q

JOB Parameter - USER=

A

Specifies that the job will assume the authority of the user ID specified

19
Q

JOB Parameter - TYPRUN=

A

Delays or holds the job from running. It will be released later.

20
Q

JOB Parameter - CLASS=

A

Directs a JCL statement to execute on a particular input queue

21
Q

JOB Parameter - MSGCLASS=

A

Directs job output to a particular output queue

22
Q

JOB Parameter - MSGLEVEL=

A

Controls the number of system messages to be received

23
Q

EXEC Parameter - PARM=

A

Parameteres known by and passed to the program

24
Q

EXEC Parameter - COND=

A

Boolean logic for controlling execution of other EXEC steps in this job.

25
Q

EXEC Parameter - TIME=

A

Imposes a time limit

26
Q

EXEC Parameter - PGM=

A

Executable Program Name

27
Q

JOB Statement:

A

JCL that identifies the job and the user who submits it

28
Q

EXEC Statement:

A

JCL that gives the name of a program to be executed

29
Q

DD Statement:

A

Specifies inputs and outputs for the program in the EXEC statement

30
Q

DD Parameter - DISP=NEW

A

Indicates that a new data set will be created

31
Q

DD Parameter - DISP=OLD

A

Indicates that the data set already exists and that this job will have exclusive access to it while it is running.

32
Q

DD Parameter - DISP=SHR

A

Indicates that the data set already exists and that several concurrent jobs can share access while they are running.

33
Q

DD Parameter - DISP=MOD

A

Indicates that the data set already exists and the current job must have exclusive access while it is running.

34
Q

DD Parameter - SPACE=(TRK,10)

A

Ten tracks with no secondary extents

35
Q

DD Parameter - SPACE=(TRK,(10,5))

A

Ten tracks for the primary, five tracks for each secondary extent

36
Q

DD Parameter - SPACE=(CYL,5)

A

Can use CYL (cylinders) instead of TRK

37
Q

DD Parameter - SPACE=(TRK,(10,5,8))

A

PDS with eight directory blocks

38
Q

DD Parameter - SPACE=(1000,(50000,10000))

A

Primary 50000 records @ 1000 bytes each