What is the meaning of the following declaration :
DCB=BLKSIZE=,
What is the difference between above declaration & not
specifying DCB at all for a output file?
Answer / gaurav
it specifies the block size. If not specified, system will
automatically assign the block size for the data
| Is This Answer Correct ? | 3 Yes | 0 No |
How do you submit JCL via a Cobol program?
oza017.myorg.emp has 100 records ,oza018.myorg.staff has 200 records but 50 are the common records in both files copy all the common records into oza017.myorg.xyz dataset
can we maintain 2 generations with different Lengths in Same GDG ?
As PARM can supply information to a program ? Can PARM be used to supply information to a cataloged or Inline Procedure also ?
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 ??
what if any ,is the syntax error in the following piece of code 01 B PIC A(7) 02 C PIC 9(4) ........ IF(B NUMERIC) ADD 10 TO C a.the condition in the if statement is wrong b.noting is wrong c.because C is initialised.ADD 10 TO C is wrong d.both B and C shoud have same size.
The maximum number of steps in a job?
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
Explain about LMMLIST�list a library's members
//step#3 exec pgm = hkbc762 what is wrong with the syntax?
I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it possible to control through JOB card?
There are 2PROCS in a JCL. I want following conditions to be carried out 1) 1st PROC should be executed as such In second PROC 2) First 4steps should not be executed 3) 5th step should not be executed 4) 6th and 7th step should be executed The change should be done only in the JCL and PROC should be untouched ?