Answer Posted / vinoth kumar.k
Yes,its possible.Using IDCAMS we can alter the limit value
of Base GDG.
Here the systax is,
//JOB STMT
//EXEC STMT
//SYSPRINT STMT
//SYSIN DD *
ALTER BASE-GDG-NAME -
LIMIT(10) /* NEW LIMIT VALUE*/
/*
//
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
In job processing, what happens in conversion stage?
Is automatic restart possible in jcl?
How can a stopped job be started again?
Is condition checking possible in jcl? If yes, how?
My Question is 1. How to cound no. of records in JCL. Please explain with an example. 2. How to execute only odd steps in JCL? I know EDIT TYPE = Inculde, Step Name = 1,3,5 and COND code for all even step. Anyone knows other than this.
What happens if both JOBLIB & STEPLIB is specified ?
what is DSN in JCL and what are the parameters to declare the DSN?
//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*
In sms datasets, what is the function of the dd mgmtclas keyword?
What dd statement is used to supply the name of a dataset?
How can a jobs execution priority be modified?
Explain how can a stopped job be started again?
What is the purpose of dd * statement in jcl?
Suppose there are 2 Input files Infile-1 and Infile-2. Both the Files contain Employee Records. You need to compare both the files and Write the Common Records in third file named Outfile. How can we do this using File-Aid?
I want to join to input files and write the matching fields on to an output file but i dont want the output file a sorted one