What is primary allocation for a dataset?
Answers were Sorted based on User's Feedback
Answer / guest
The space allocated when the dataset is first created.
| Is This Answer Correct ? | 4 Yes | 2 No |
Answer / guest
The Primary allocation of the dataset is one which is used
by the program or jcl at the first priority. Once all these
primary allocation is used up, then only the secondary
allocation will be considered.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / eswaran
HI
I HAVE FACE THIS QUESTION MY CENTER
I HAVE CREATE DATASET ONLY DS NAME AND SPACE KEYWORD
PARAMETER BUT I DON"T INSERT THE RECORDS BECAUSE THESE
DATASET DEFAULT RECORD LENGTH(LRECL)=0.
NOTE:
U HAVE SEE THIS DATASET INFORMATION USING DISP=(NEW,CATLG)
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / siri
it specifies the amount of primary space required terms of the space unit......one volume must have enough space for the primary allocation......
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the function of job statement in jcl?
i am trying to copy a PS file into VSAM file in step2 by using PGM=IDCAMS,COND=(0,LT) and the pS file is getting sorted in the step1. I got the return code 00 for step1 but step2 got flushed. can u please help on this. Below is My JCL. SEPP050 EXEC PGM=SORT,REGION=6144K SYSIN DD DSN=SYSCMN.PROD.CCLIB (F5910BNN), DISP=SHR SYSOUT DD SYSOUT=* SYSUDUMP DD SYSOUT=A SORTIN DD DSN=Z1225BT.F5910EPP.HISOUT, DISP=SHR SORTOUT DD DSN=Z1225BT.F5910EPP.HISOUT.SORTOUT5, DISP= (NEW,CATLG,DELETE),UNIT=DELQ, SPACE=(CYL, (500,500),RLSE), DCB= (RECFM=FB,LRECL=1606,BLKSIZE=16060,BUFNO=15) SORTWK01 DD UNIT=SYSDA,SPACE=(CYL, (1)) SORTWK02 DD UNIT=SYSDA,SPACE=(CYL, (1)) SORTWK03 DD UNIT=SYSDA,SPACE=(CYL, (1)) SORTWK04 DD UNIT=SYSDA,SPACE=(CYL, (1)) SYSIN1 DD UNIT=VIO,SPACE= (80,1) * SEPP060 EXEC PGM=IDCAMS,COND= (0,LT) SYSPRINT DD SYSOUT=* SYSOUT DD SYSOUT=* SYSLIST DD SYSOUT=* *** DD01 DD DSN=Z1225BT.F5910EPP.HISOUT.SORTOUT, // DISP=SHR //*** //DD01O DD DSN=Z1225BT.F5910PHS, // DISP=SHR, // AMP=(AMORG,'BUFND=12,BUFNI=5') //SYSIN DD DSN=SYSCMN.PROD.CCLIB(F5910BBB), // DISP=SHR Output RC for the two steps: SDCBPJ05 SEPP050 00 236 .00 .00 .0 SDCBPJ05 SEPP060 FLUSH 0 .00 .00 .0
Hi, I have 3 files say file A , file B and file C.I want to form an output file in which i will have all the records from file A. Files B and C also may contain records that are present in file A.I want those records also to be included in my output file. for eg: file A contains: 1 2 3 file B contains: 2 4 5 file C contains: 1 3 5 So in my output file should look like: 1 2 3 2 1 3 Can any one help ???.....thanks in advance.
Can an individual step be restricted from using all the jobs allowed cpu time?
I have a dataset with record length 40 in production, due to some requirements it was changed to 80. Then how can we know the jobs which are effected by this change and how can we resolve it.
Is it possible to code instream data in a PROC?
Is it possiable to use a gdg in the INCLUDE statement in a SORT jcl? I am using this because I want to change the condition with out changing the jcl. Please provide with a sample code.
What does the statements: typrun=scan and typrun=hold do in a JCL statement
I need exexution process for JCL programs
what is the difference between return code and maxcc?
//step#3 exec pgm = hkbc762 what is wrong with the syntax?
in a series of 10 steps, i need to run only 1,3,5,7 & 9th steps only. how do u code?