what is SOC4 error?
No Answer is Posted For this Question
Be the First to Post Answer
what is the use of temporary files?
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
State the uses of syspring, sysin, sort fields, sum fields and dummy.
Can a PROC CALL another PROC ? (in both Instream and Cataloged cases) ?
if we give two job cards in a single what happens
what is pupose and meaning of the REGION keyword and what jcl statement is it associated with?
Definition of COND parameter in JCL
IF we are calling a PROC from Jcl...This Proc have 3 steps in it and we want to execute only the second step using the JCL, How to do it?? Please give the answer ASAP:)
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?
Can we Execute a job without specifying Job Name in the Job Card?
in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?
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.