The NoteBook of EricKong

  BlogJava :: 首页 :: 联系 :: 聚合  :: 管理
  611 Posts :: 1 Stories :: 190 Comments :: 0 Trackbacks

#

The four divisions in a COBOL Program are IDENTIFICATION DIVISION, ENVIRONMENT DIVISION, DATA DIVISION and PROCEDURE DIVISION.
posted @ 2011-12-27 09:25 Eric_jiang 阅读(152) | 评论 (0)编辑 收藏

1. What is primary allocation for a dataset? 数据集的Primary allocation指的是什么?
The space allocated when the dataset is first created. 数据集第一次被创建的时候所分配的空间。

2. What is the difference between primary and secondary allocations for a dataset?
数据集的
between primary and secondary allocations之间有什么不同?
Secondary allocation is done when more space is required than what has already been allocated.
secondary allocations是指当系统需要更多的空间的时候,数据集被新增加空间的后的增量。

3.How many extents are possible for a sequential file ? For a VSAM file ? 数据文件和VSAM文件分别最多有多少个扩展
16 extents on a volume for a sequential file and 123 for a VSAM file. 顺序文件有一个卷上有16个扩展,而VSAM有123个

4. What does a disposition of (NEW,CATLG,DELETE) mean? 处置语句(NEW,CATLG,DELETE)是什么意思?
That this is a new dataset and needs to be allocated, to CATLG the dataset if the step is successful and to delete the dataset if the step abends.
意思是,这是一个新的数据集将要被分配,编目这个数据集假如作业步是成功的,删除这个数据集假如作业步abend了。

5. What does a disposition of (NEW,CATLG,KEEP) mean? 处置语句(NEW,CATLG,KEEP)是什么意思?
That this is a new dataset and needs to be allocated, to CATLG the dataset if the step is successful and to KEEP but not CATLG the dataset if the step abends. Thus if the step abends, the dataset would not be catalogued and we would need to supply the vol. ser the next time we refer to it.
意思是,这是一个新的数据集将要被分配,编目这个数据集假如作业步是成功的,假如这个作业步不成功那就不编目了,但是作业部正常结束后,该数据集将被继续保留在相应的卷上,然而,如果这个数据集abend了,这个数据集不应该被编目,而我们应该提供vol.ser值,在下次的引用中。

6. How do you access a file that had a disposition of KEEP? 怎么使用含有处置语句KEEP的数据集
Need to supply volume serial no. VOL=SER=xxxx. 不需要提供卷的序列号, 使用VOL=SER=xxxx

7. What does a disposition of (MOD,DELETE,DELETE) mean ? 处置语句(MOD,DELETE,DELETE)是什么意思?
The MOD will cause the dataset to be created (if it does not exist), and  then the two DELETEs will cause the dataset to be deleted whether the step abends or not. This disposition is used to clear out a dataset at the beginning of a job.
MOD,这个数据集将会被创建假如不存在,两个Delete将会删除数据集无论作业步骤abend与否,这个处置语句通常是用于在作业的开始用于清理数据集

8. What is the DD statement for a output file? 如何用DD语句创建输出文件
Unless allocated earlier,
will have the foll parameters: 除非之前已经创建,可以用下面的参数来实现
DISP=(NEW,CATLG,DELETE), UNIT , SPACE & DCB .

9. What do you do if you do not want to keep all the space allocated to a dataset? 假如你不想保留那些已经分配给数据集的空间
Specify the parameter RLSE ( release ) in the SPACE e.g. 使用在SPACE语句中使用RLSE ( release )参数
SPACE=(CYL,(50,50),RLSE)

10. What is DISP=(NEW,PASS,DELETE)? 处置语句(NEW,PASS,DELETE)是什么意思?
This is a new file and create it, if the step terminates normally, pass it to the subsequent steps and if step abends, delete it. This dataset will
not exist beyond the JCL. 这是一个将要被创建的文件,假如作业步正常的结束,传递给子作业步,假如步骤abend了,删除它,这个数据集将在作业步结束时删除

11. How do you create a temporary dataset? Where will you use them?
Temporary datasets can be created either by not specifying any DSNAME or by specifying the temporary file indicator as in DSN=&&TEMP. We use them to carry the output of one step to another step in the same job. The dataset will not be retained once the job completes.

12. How do you restart a proc from a particular step?  如何在特定的作业步中重新启动一个子程序?
In job card, specify RESTART=procstep.stepname where procstep = name of the jcl step that invoked the proc and stepname = name of the proc step where you want execution to start

13. How do you skip a particular step in a proc/JOB? 如何跳过一个特定的作业步?
Can use either condition codes or use the jcl control statement IF (only in ESA JCL)可以使用either 或者是作业控制语句IF

13a. A PROC has five steps. Step 3 has a condition code. How can you  override/nullify this condition code?
一个子程序有五个作业步?作业步3含有条件编码,你是如果覆盖/使这个条件码无效?
Provide the override on the EXEC stmt in the JCL as follows:在EXEC语句中提供覆盖
//STEP001 EXEC procname,COND.stepname=value
All parameters on an EXEC stmt in the proc such as COND, PARM have to be overridden like this.

14. How do you override a specific DDNAME/SYSIN in PROC from a JCL? 如果在子程序中覆盖一个特定DDNAME/SYSIN
//<stepname.dd> DSN=...

15. What is NOTCAT 2 ? 什么是NOTCAT 2
This is an MVS message indicating that a duplicate catalog entry exists. E.g., if you already have a dataset with dsn = xxx.yyyy; and u try to create one with disp new,catlg, you would get this error. the program open and write would go through and at the end of the step the system would try to put it in the system catalog. at this point since an entry already exists the catlg would fail and give this message. you can fix the problem by deleting/uncataloging the first data set and going to the volume where the new dataset exists(this info is in the msglog of the job) and cataloging it.
这是一个MVS信息,它表明系统已经含有一个同样编目的数据集,例如,你已经含有一个dsn为xxx.yyyy的数据集合,但是你却希望通过处置语句DISP来编码,那么你就会遇到这样错了,系统会继续打开和写入这个数据集,最后,系统会尝试对它进行编目,就在这个时候,既然一个已经存一个同名的数据集,这会导致系统fail和抛出这个消息,要修正这个文件,你可以通过删除或者对现有的这个文件接触编码。

16. What is 'S0C7' abend? 什么是SC07 abend
Caused by invalid data in a numeric field. 数字字段中含有不合法的数据

17. What is a S0C4 error ? 什么是
Storage violation error - can be due to various reasons. e.g.: READING a file that is not open, invalid address referenced due to subscript error.

18. What are SD37, SB37, SE37 abends?
All indicate dataset out of space. SD37 - no secondary allocation was specified. SB37 - end of vol. and no further volumes specified. SE37 - Max. of 16 extents already allocated.

19. What is S322 abend ?
Indicates a time out abend. Your program has taken more CPU time than the default limit for the job class. Could indicate an infinite loop.

20. Why do you want to specify the REGION parameter in a JCL step?
To override the REGION defined at the JOB card level.REGION specifies the max region size. REGION=0K or 0M or omitting REGION
means no limit will be applied.

21. What does the TIME parameter signify ? What does TIME=1440 mean ?
TIME parameter can be used to overcome S322 abends for programs that genuinely need more CPU time. TIME=1440 means no CPU time limit is to be applied to this step.

22. What is COND=EVEN ?
Means execute this step even if any of the previous steps, terminated abnormally.

23. What is COND=ONLY ?
Means execute this step only if any of the previous steps, terminated abnormally.

24. How do you check the syntax of a JCL without running it?
TYPERUN=SCAN on the JOB card or use JSCAN.

25. What does IEBGENER do?
Used to copy one QSAM file to another. Source dataset should be described using SYSUT1 ddname. Destination dataset should be decribed using SYSUT2. IEBGENR can also do some reformatting of data by supplying control cards
via SYSIN.

26. How do you send the output of a COBOL program to a member of a PDS?
Code the DSN as pds(member) with a DISP of SHR. The disp applies to the pds and not to a specific member.

27. I have multiple jobs ( JCLs with several JOB cards ) in a member. What happens if I submit it?
Multiple jobs are submitted (as many jobs as the number of JOB cards).

28. I have a COBOL program that ACCEPTs some input data. How do you code
the JCL statment for this? ( How do you code instream data in a JCL? )
//SYSIN DD*
input data
input data
/*

29. Can you code instream data in a PROC ?
No.

30. How do you overcome this limitation ?
One way is to code SYSIN DD DUMMY in the PROC, and then override this from the JCL with instream data.

31. How do you run a COBOL batch program from a JCL? How do you run a COBOL/DB2 program?
To run a non DB2 program,
//STEP001 EXEC PGM=MYPROG
To run a DB2 program,
//STEP001 EXEC PGM=IKJEFT01
//SYSTSIN DD *
DSN SYSTEM(....)
RUN PROGRAM(MYPROG)
PLAN(.....) LIB(....) PARMS(...)
/*

32. What is STEPLIB, JOBLIB? What is it used for?
Specifies that the private library (or libraries) specified should be searched before the default system libraries in order to locate a program to be executed.STEPLIB applies only to the particular step, JOBLIB to all steps in the job.

33. What is order of searching of the libraries in a JCL?
First any private libraries as specified in the STEPLIB or JOBLIB, then the system libraries such as SYS1.LINKLIB. The system libraries are specified in the linklist.

34. What happens if both JOBLIB & STEPLIB is specified ?
JOBLIB is ignored.

35. When you specify mutiple datasets in a JOBLIB or STEPLIB, what factor determines the order?
The library with the largest block size should be the first one.

36. How to change default proclib ?
//ABCD JCLLIB ORDER=(ME.MYPROCLIB,SYS1.PROCLIB)

37. The disp in the JCL is MOD and the program opens the file in OUTPUT mode. What happens ?
The disp in the JCL is SHR and the pgm opens the file in EXTEND mode. What happens ?
Records will be written to end of file (append) when a WRITE is done in
both cases.

38. What are the valid DSORG values ?
PS - QSAM, PO - Partitioned, IS - ISAM


39. What are the differences between JES2 & JES3 ?
JES3 allocates datasets for all the steps before the job is scheduled. In
JES2, allocation of datasets required by a step are done only just before
the step executes.

posted @ 2011-12-22 14:15 Eric_jiang 阅读(1211) | 评论 (0)编辑 收藏

A KSDS file stores logical records of a file in fixed length blocks called Control Intervals(CI). In a KSDS Data file, a Control Interval holds several logical records. The logical records within each control-interval are always kept sorted by key-field. 

A KSDS File could have thousands of Control Intervals.
In a Control Interval, records can be of any size or length. We do not distinguish in particular between fixed-length and variable-length records. However, as a rule, all Control Intervals in KSDS file are exactly equal in size(length).

When a new KSDS file is created, you must specify the size of the Control Intervals in the file. By default, the
Control Intervals(CI) in a KSDS File assume a size= 4k(4096) bytes. However, the size of Control Intervals in KSDS Files can lie in the range of 512 bytes <= Control Intervals Size <= 32k

When you create a new KSDS File, the control intervals in it are empty. As you load data into the KSDS file, the Control Intervals are populated with information.

What follows from hereon, shall give you a picture of how Control Intervals look like in Memory.

Control Interval (Very idealistic – Simplified) 
Assume that, Control Intervals are 4096 bytes long. A logical record(Employee record) spans 1024 bytes. Then,

No. of records per CI = 4096/1024 = 4 records/CI

Thus, in this example, the Control Interval is completely full(no room for new records).

 

Control Interval often contains some empty/free space(Close to real model) :
Assume that, Control Intervals are 4096 bytes long. The first logical record = 1000 bytes, the second logical record = 1500 bytes, the third logical record= 1,300 bytes.

Logical Record 1 + Logical Record 2 + Logical Record 3
= 1000 + 500 + 1300 = 2800 bytes.

Thus, the remaining space = 4096 – 2800 = 1,296 bytes is left free. This free-space can be used to accommodate a new logical record. Thus, Control Intervals may also have free-space.

New logical records can be added to a Control Interval, by using the free-space in the Control Interval(CI).


Image153[1]
VSAM Control Interval

Image152[1]
Control Interval showing addition of record with key 30

Let's look at the recipe followed by VSAM, to add a new logical record to a KSDS File.

1. VSAM goes through a full-index search to locate the Control Interval(CI) in the KSDS Data file, in which the new record must be placed.
(This search is exactly the same as that used to randomly retrieve a record).
2. After the index search locates the Control Interval(CI), that Control Interval(CI) is loaded into memory. VSAM then searches through the logical records in the Control Interval to determine, where the new record should go.(Recall, that a KSDS file stores all data records in increasing order of the key).
3. The new record is then inserted into the Control Interval(CI), in key sequence, re-arranging the other records, as necessary.
4. The updated Control Interval(CI) is now written back to its original location on the Disk.

Control Interval also contains extra Information(Real Model)

VSAM treats all the logical records, as if they were variable-length(even if, they are fixed-length). VSAM keeps track of the length of Logical records in a Control Interval, by using special Record-definition Field(RDF), at the end of each Control Interval. This special field that holds the length information for each logical record is 3 bytes long.

Moreover, VSAM also keeps track of the amount of the free-space and its location, within a Control Interval. This meta-information is stored in a special Control Interval-definition Field(CIDF), at the end of each Control Interval. This special field that holds [amount,location] of the free-space for a Control Interval is 4 bytes long.

 


Control Area(CA) :
A Control Area(CA) is a group of related Control Intervals. 

KSDS Files are organised as Control Areas(CA) which in turn contain hundred’s of fixed-length Control Intervals(CI) filled with logical records, free-space and Control information.

posted @ 2011-12-21 15:22 Eric_jiang 阅读(228) | 评论 (0)编辑 收藏

An Input Data-Entry Field, is an Area - where the User is expected to type some data-value and supply Input. The Data in this field is keyed-in by the User. Hence, the User is free to type any Input he desires in these fields. Data-Entry Fields are therefore, said to be un-protected(UNPROT).

When you run COBOL-Programs in Batch-Mode, by writing a Job, the Input-Data to these Programs is generally stored  in Mainframe-Files(Datasets). What about COBOL Programs run in Online-Interactive Mode ; have you wondered, what’s their source of the Input-Data? Bingo! Data-Entry Fields are the Primary-Source of Feeding Input-Data to the COBOL-Programs run in Online Mode under CICS. It should clear, that COBOL-Programs run in Online-Mode under CICS, read the Data from Input Data-entry Fields, process the Data, and generate Output. 

Since COBOL Programs need to access and read the Data from Input-Fields, it is important that you assign a name or Label to your Input-Fields on the CICS Screen. The Input-Screen INPMAP has Input
-Fields containing two empty Blanks '__' adjacent to 'FIRST NUMBER : ' and 'SECOND NUMBER : ' Display-Fields. I have named them NUMBER1 and NUMBER2.

Image318 
How to calculate the Position or Placement of Consecutive-Fields? You employ a simple formula (start  + Length + 1 ). For example, 'FIRST NUMBER : '
display-only field starts at column 3, and is 15 bytes long. So, the '__' Input-Field next to it can start on or after (03 + 15 + 1) = Column 19. You shouldn’t be surprised, as to why I've positioned NUMBER1 and NUMBER2 Fields at (5,19) and (7,19) respectively.

posted @ 2011-12-21 14:59 Eric_jiang 阅读(175) | 评论 (0)编辑 收藏

The Fields whose Data-Value always remains Fixed or Constant, are called Display-Only Fields. The User cannot Over-type, modify the data of this Field. These Fields restrict User-Input. The Data in the Field is Protected(PROT).

To begin with, the 'ADD APPLICATION' Title is a Display-Only Field, positioned right at the center - row 1 and Column 32.

Image314  
Like-wise, 'FIRST NUMBER  : ' is a Display-Only Protected(PROT) Field, positioned at Row 5 and Column 03. Look, how I've coded the DFHMDF for the this field. 

Image315 

As an exercise, try coding the 'SECOND NUMBER : ' which sits directly  below(underneath) the 'FIRST NUMBER : ' Field on Line 7 and Column 03, by yourself. This is how I coded the 'SECOND NUMBER : ' Display-Only Field.

Image317

posted @ 2011-12-21 14:51 Eric_jiang 阅读(148) | 评论 (0)编辑 收藏

Writing a CICS Map, is just like designing a Web-Page in HTML. CICS Maps are coded using BMS Instructions. BMS stands for Basic Mapping Support. The three important BMS Instructions are DFHMSD, DFHMDI and DFHMDF.

The DFHMSD instruction is used to define a New Mapset. A Mapset is a list or collection of Maps. You put related Maps or CICS GUI Screens together into1 Mapset. Generally, when you have a big system, with hundreds of CICS Screens, you group all the screens related to same functionality under one common Umbrella, under one Mapset. A Mapset is a means to gift-wrap many CICS Pages together.

The DFHMDI Instruction is used to define a New Map(within a Mapset). A Map represents a single CICS GUI Screen. You code the DFHMDI Instruction to tell, what is the size or dimensions of the CICS Page, just like your PC-Screen has a resolution of 1024x768. The DFHMDI Instruction of the Map, also tells what’s the line the Cursor should be initially positioned, when the Screen is displayed.

Every CICS GUI Screen has many Fields – Title field, constant-fields, data-entry Fields. To create a New Field on a Map, you code the DFHMDF Instruction. The DFHMDF Instruction defines the placement of the Field(where does it appear on the Screen), is it a Display-Only constant-field or a Data-Entry Field, what is the Length of the Field, does it have an initial-value and much more.

 

posted @ 2011-12-21 14:12 Eric_jiang 阅读(161) | 评论 (0)编辑 收藏

When the user types Input text Data on the CICS GUI Input Screen – say he presses Option 1 on the MAIN MENU Screen, and hits ENTER, the COBOL Program starts from the top at the PROCEDURE DIVISION, processes the data, and sends the next CICS Output Screen say BOOK MENU Screen, and gets killed(terminated). This is called one Invocation of the COBOL Online Program.

The User stares at the BOOK MENU screen, decides what Input to type, and then after filling in the passenger details on the BOOK MENU Input Screen, hits ENTER. The COBOL Online Program restarts all over again from the PROCEDURE DIVISION, processes the Passenger Details and reserves a ticket, and sends the next CICS Output Screen say CONFIRMATION TICKET Screen, and gets killed. This is the second invocation of the COBOL Online Program.

Every time, the COBOL Program starts from the PROCEDURE DIVISION, receives data from the Input Screen, processes the data, and sends the next output screen, and finally stops running. The Start-Receive Input-Process-Send Output-Stop cycle keeps repeating till you are done with your task. Each time you type data and hit ENTER, you invoke or run the COBOL Program to process your inputs.

Sometimes, you need to save(remember) data between two successive runs, or invocations of the COBOL Online Program. Such data cannot be stored in Working Storage Areas of the COBOL Program. Working Storage Areas are created when the COBOL Program starts, and deleted when the COBOL Program stops. Working Storage Areas are rough-work areas(scratch-pad) of the COBOL Program, that live only as long as the COBOL Program runs.

The requirement however, is to store(save) data across multiple invocations(runs) of the COBOL Online Program. When you want to store(save) data which is globally accessible across several runs a COBOL Program, you use Linkage Section Storage Areas
.
Given below is a simple picture that depicts how Linkage Section Storage areas differ from Working section storage areas. You’ve got a simple Storage Area A containing the value 0. You write a COBOL Program to ADD +1 TO A.

Case 1: If A were to be a Storage Area in the WORKING-STORAGE SECTION.

Image196[1]

Each time the COBOL Program starts WS-A Storage Area is created with value 0, and the COBOL Program adds +1 to WS-A, so WS-A becomes 1. After the COBOL Program stops, WS-A is deleted. So, this doesn’t offer you memory of the past feature, with working storage areas you don’t remember, what was stored in WS-A previously, the last time the COBOL Program ran.

Case 2: If A were to be a Storage Area in the LINKAGE SECTION.

Image197[1]

Here WS-A Storage which  is globally accessible and shared across the 1st run, 2nd run and the 3rd run of the COBOL. WS-A is a Linkage section Area, so this Storage area is independent of the COBOL Program. It helps to remember data of the past, pass data from one invocation(run) to the next successive invocation(run).

DFHCOMMAREA is a Linkage Section Storage Area that helps to store(save) data, pass data around from one invocation(run) to another invocation of a COBOL Online Program in CICS. Thus, Linkage-section storage area DFHCOMMAREA plays an important role to remember and retain data between two successive invocations.

posted @ 2011-12-21 12:25 Eric_jiang 阅读(352) | 评论 (0)编辑 收藏

This is called a Conversationaal Program.

Image192[1]

Given below is how Pseudo-conversational Programs compare with their Conversational Counterparts.

Image195[1]
posted @ 2011-12-21 12:16 Eric_jiang 阅读(178) | 评论 (0)编辑 收藏

In Windows, you double-click a Program, to start it in the Online-Mode. However, in CICS, a user cannot directly start a Program. Instead, you define a Transaction, which in turn will run the COBOL Program in Online Mode. Every transaction has a 4-byte Unique identification number called Transaction ID. You wanna to run COBOL Programs in Online mode on CICS, transactions are the way.

How do you run a COBOL Program on CICS? On a CICS Terminal(like a Web-browser), when you type the Transaction-ID, and hit ENTER, the COBOL Program is loaded, immediately started in the online-mode. This is called invoking the Transaction. For example, if the COBOL-online Program is BOOKTKT, and the Transaction-ID is TBOOK, when you type TBOOK, and hit ENTER, CICS Software will find the the COBOL Program BOOKTKT on the Disk, and Load into the CICS Region and execute it in Online Mode. Similar to TSO, CICS Software serves many users simultaneously. CICS is a very robust Transaction Monitor (keeps listening for transactions) – it can handle trillions of transactions at a time.

When you invoke a transaction, by typing say TBOOK, it starts a COBOL Program like BOOKTKT. But how does the CICS Software, which COBOL Program to start for the transaction TBOOK? Moreover, the CICS Software also needs to know the place(location) to look for your COBOL Program. What is the PDS, Folder or library on the Disk in which the COBOL Load Module BOOKTKT resides, so that CICS Software can pick up the Load, and start running it. Now, all this extra-information is stored in CICS Tables.

The important CICS Tables are :
PCT – For Transactions
PPT – For COBOL Programs
FCT – For Files
RCT – For DB2 Connections

When you type the Transaction ID – TBOOK, on the Terminal, the CICS Software will look-up the Transaction in the PCT.

Transaction Program
TBOOK BOOKTKT
TABC PROGR01
TDEF PROG02
... ...

PCT Table(Program Control Table) tells the COBOL-CICS Program for any Transaction.

Program Load Pointer
BUA21 AGY0157.CICS.LOADS
BUA22 AGY0157.CICS.LOADS
BOOKTKT AGY0157.DEMO.CICS.LOADLIB
BUA23 AGY0157.DEMO.CICS.LOADLIB

PPT Table(Process Program Table) tells the location(Load Library) from which the COBOL Program(Load) must be picked up, and loaded into the CICS Region
posted @ 2011-12-21 11:56 Eric_jiang 阅读(338) | 评论 (0)编辑 收藏

If you  don’t know for sure, whether your job completed successfully, or it failed(and the reason why it failed). MVS Operating System prints messages to a log, as the job is processed. These run-time messages which get recorded to the log, helps track, if the Job completed successfully or it failed. Further, they also contain error-messages that point out why the job fails.

To see the print output/log of any Batch Job, you use a software called SDSF. SDSF stands for Spooler Display and Search Facility – its a software for seeing the output in the Spool.

What is Spool? Well, generally, the log of a Job, when it runs on Mainframes, are to be sent to a printer. But prior to sending the log to the printer, the logs have to wait(buffered) in a staging area(in a queue), because hundreds of jobs complete every minute, and the logs gotta be printed. Not all logs can be printed at once. The logs have to wait in a Queue/staging area. This staging area is called Spool(Queue). The Mainframe printer will pick up the log from the spool one-by-one and print it.

Before TSO and SDSF was invented, you couldn’t see the output till the time, it got printed. Waiting for it to get printed, could take hours on end. Now-a-days, TSO makes this easy, it’s possible to view the logs in the Spool(Queue).

Image122[1] 

To view the log of a Job in the Spool(Queue), type START SDSF and press <Enter>. This shows the shows the SDSF Screen. To see the log of Job, you must type ST on the SDSF menu and press <Enter>.

Image128[1] 

A list of the logs for all jobs in Spool(Output Queue) is displayed. By default, this list will displayed only those jobs submitted via your TSO User-id. For example, if my TSO User-id is AGY0157, it will display all jobs starting with(prefix) AGY0157*.

Image131[1] 

The screen displays a list of logs of all jobs, you have submitted. For each job that you submit, there is an entry, and it shows various details like the job-name, owner, class and priority.

If your job is complete, and its log is ready to be dispatched to the printer, the log is on the PRINT Queue. On the other hand, if the job is still running, then it is still in the EXECUTION Queue.

Mostly, all jobs that you submit, their logs would be dumped here in the Spool. To view the contents any particular job log, you can type ? against the job=name and press <Enter>. This takes you inside the log.

Image132[1]

The log(print output) of a job, contains several sections or Listings. You can type S(Show) against each Listing, and view the contents of it. 

The Input Queue and Output Queue are analogous to the run-ways on an Airport. The Input Queue is runway from where the Jobs take-off. After their flight is complete, the jobs land on the runway called the Output Queue.
But who's the Air Traffic Controller(ATC) on this Airport?

The JES(Job Entry Sub-System) is a software that manages the Input Queue and Output Queue. The JES acts like Traffic Controllers(Traffic cops). Without them, two airplanes or jobs could collide. The JES is a part of the MVS Operating System that decides, what time a job can takeoff safely from the Input Queue(Takeoff runway). Thus, it monitors the traffic in the Input Queue(Runway) and prepares the time-table, a chart or a schedule for Jobs entering the system.

On the Input Queue side, the JES(Job Entry Subsystem) welcomes all Jobs that enter into the Input Queue, reads the Jobs' JCL, converts it into an internal format known to MVS, and schedules the job for takeoff at 2 o’clock or 3 o’clock, till the Job takes off, and begins its flight(execution).

Sometimes, on the Output Queue(Staging area) side contains logs(outputs) of old jobs. Such old logs(print outputs) of a job, are deleted from time-to-time periodically by JES. So, JES ensures that the Output Queue clean and tidy.

The JES Message Log would contain messages, as shown in the below Snap. You can click
here to see the JES Message Log in the ordinary Text-Format.

Image133[1] 

The Job Entry Subsystem(JES) reads the Job’s JCL Statements. My Job had 24 lines of JCL Code, so JES reports this as 24 cards read.

Once the job takes off from the Input Queue, it executes, and lands at Output Queue. The log(print output) of Job, is referred as SYSOUT. This contains 125 lines of text. JES reports this as 125 SYSOUT Print records. This implies, the log(print output) of the job, contains 125 lines of text, in the Output Queue(Staging area), waiting to get printed.

Look at the snap below. In the JCL-Listing, MVS numbers the JCL Statements that you submitted as part of the job. You can click
here to see the JCL-Listing in an ordinary Textual-Format.

Image134[1] 
The JESYSMSG Listing contains Memory Allocation and Cleanup Messages. ALLOC tells you which devices and how much memory was allocated for the job-step. As you know, one step runs one program. It also informs you about the CPU time required to process a Job-step. Every Job-step leaves behind a trail, a COND CODE in the range of 0000 to 4095. The below picture shows how the JESYSMSG-Listing looks. You may also click here, to see the JESYSMSG-Listing in ordinary textual-format.

Image135[1] 
But apart from this , when you want to write your own extra notes to the logs(diary), you code a SYSOUT=* parameter on the DD Statement. For the 3-step job-stream that I have written, I have set the //SYSUT2 DD statement to point to the logs. This means that, the outputs of //STEP01 and //STEP03 shall be jotted down in the logs. The first step prints/copies the contents of the Unsorted Input file to the log. The second step

These are the contents of the Unsorted Input File, written to the log -

Image136[1]

These are the contents of the Sorted Output, written to the log. Click
here to see the Sorted-Output in Text-Format. 

Image137[1] 
posted @ 2011-12-21 11:41 Eric_jiang 阅读(269) | 评论 (0)编辑 收藏

仅列出标题
共57页: First 上一页 34 35 36 37 38 39 40 41 42 下一页 Last