what is mainframe?
Answers were Sorted based on User's Feedback
Answer / muttaiah
Never ask this question again.
You can google and get it.
| Is This Answer Correct ? | 10 Yes | 3 No |
Answer / muttaiah
Mainframe is also like a computer, PC which we use is Mini
computer whereas mainframe is super computer which is used
to perform many arithmetic, scientific calculations & for
processing huge volume of data within milli or macro secs.
PC Mainframe
WINDOWS - MVS
95,98,XP,VISTA - OS/390,Z/OS
Harddisk - DASD
File - DATASET
Folder - PDS
CD - TAPE
| Is This Answer Correct ? | 8 Yes | 1 No |
Answer / mohi
Mainframe is a large systems technology, it acts as an application server where huge amount of information is processed on dialy bases.
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / anirud
mainframe s nothing but a large size computer.it is made up with frames .all frames togeather is called a mainframe.frame is nothng but a physical component
| Is This Answer Correct ? | 1 Yes | 1 No |
//step#3 exec pgm = hkbc762 what is wrong with the syntax?
why jobstep can't be more than 255 and for GDG has max limit 255 . Is there any relation between the two
How do you overcome this limitation ?
File1 has 100 records and file2 has 200 records i want to copy 50 records which r in both file into file3
Suppose a proc step has a DD statement like //ABC DD DSN=TEST.FILE1,DISP=SHR DSN=TEST.FILE2,DISP=SHR and the above DD name is overridden from the JCL as given below //procstepname.ABC DD DSN=TEST.FILE3 - Will the DD statement now have just TEST.FILE3 or it will be TEST.FILE3 and TEST.FILE2? Suppose if it is overridden twice like //procstepname.ABC DD DSN=TEST.FILE3 //procstepname.ABC DD DSN=TEST.FILE4 Will this give a JCL error? If not, what will be final output?
Explain the function of dd name parameter with a 2 part structure; audit.report?
WORKING-STORAGE SECTION. 1 GROUP-ITEM. 05 AMOUNT-1 PIC 99V9 USAGE COMP VALUE 50. 05 AMOUNT-2 PIC 9(4)V99 USAGE COMP. PROCEDURE DIVISION. MOVE ZERO TO GROUP-ITEM. ADD 50 TO AMOUNT-1. DISPLAY AMOUNT-1. STOP RUN.
In your JCL, run the even numbered steps if date is even and run odd numbered steps if date is odd . Where do you generate the date ??in cobol or JCL ??
Is there any command to check wether the ps file is in sorted order?
What does SYSIN * indicate?
One dataset is creating in the step1 with LRECL of 133 and the same dataset is used in the next step in DISP=SHR mode, but while scanning the JCL the following error is thrwon. Please verify the below JCL $/SEPP030.PROVIDER DD DSN=Z1225BT.F5750PG9.F5910PRV.QC#A6868 //ERRORRPT DD DSN=F5910&ST&IN..F5910EPP.ERRORRPT.P&CYCDATE, --ERRORRPT DD DSN=F5910PG.F5910EPP.ERRORRPT.P, // DISP=&DISNCD,UNIT=&DELQ, -- DISP= (NEW,CATLG,DELETE),UNIT=DELQ, // SPACE=(TRK, (30,15),RLSE), // DCB=&DCB2 -- DCB= (PPG.METMODEL,BLKSIZE=0,LRECL=133,RECFM=FB) $/SEPP030.ERRORRPT DD DSN=Z1225BT.F5910EPP.ERRORRPT.AOUTPUT //SEPP040 EXEC PGM=FILEAID,COND= (0002,EQ,SEPP030) //SYSPRINT DD SYSOUT=* //SYSLIST DD SYSOUT=* //DD01 DD DSN=SYSCMN.PROD.CCLIB (F5910EP1),DISP=SHR $/SEPP040.DD01 DD DSN=Z1225BT.TEST.CCLIB (F5910EP1) E1 - DSS20791E - DATA SET 'Z1225BT.F5910EPP.ERRORRPT.AOUTPUT' HAS AN LRECL OF 133 COULD NOT BE OPENED BECAUSE THE CODED LRECL WAS 80. // DD DSN=F5910&ST&IN..F5910EPP.ERRORRPT.P&CYCDATE, -- DD DSN=F5910PG.F5910EPP.ERRORRPT.P, // DISP=SHR $/ DD DSN=Z1225BT.F5910EPP.ERRORRPT.AOUTPUT please find the error code in the above mentioned lines and please suggest me about the error and the solution for that.
I have 15 flat files. each record in the files have the monthly salary for 12 months with the employee number. Now I want to concatenate the 15 files such that for the employee numbers that are common the o/p file should have only one record and the salaries should be concatenated to that record. How can we do it with JCL?