what's the significance of freespace(0 0) and freespace(100
100)
Answers were Sorted based on User's Feedback
Answer / harsha
Freespace(%CI,%CA):- It means that how much % of CI is to
be left free and how much % of CA is to be left free.
Freespace(0,0):-Means that there will no free space. all
space would be used to store data.
Freespace(100,100):-Means that there will be only one
record written in the first CI of each CA.
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / saurabh shah
meaning of freespace(0 0) means default system
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / vivek
FREE SPACE IS AVAILABLE(DEFAULT) MEMORY OF THE MAINFRAME
| Is This Answer Correct ? | 1 Yes | 2 No |
What happens if both JOBLIB & STEPLIB is specified ?
How do you override a specific DDNAME/SYSIN in PROC from a JCL?
Can we delete the data using IEFBR14 , IEBGENER??
How can a stopped job be started again?
What is a COND parameter in JCL?
what is SOC4 error?
When will we need to specify Space parameter ?
what happens if job falls in loop ? how to resolve it ?
What is the meaning of the EXEC statement keyword, COND? What is its syntax?
What is STEPLIB, JOBLIB? What is it used for?
I have 20 steps in a job... step01, 02....step17...step20. For some reason I want to execute step17 only if the return code for all the previous steps are less than or equal to 4. otherwise if return code for any of the previous 16 steps is greater than 4, then step17 should be bypassed. How do I do that ?? how and in which step should i formulate COND parameter
Suppose i have a file with 10 recs and i want to skip only the 7 th record and copy the rest into another file. How do i do it using SORT?