How to compare 2 files using File-Aid?
Answer / mohi
Yeah we can compare 2 files using option 10 in fileaid main menu.
| Is This Answer Correct ? | 7 Yes | 0 No |
If a jcl has just 1 step and the input file to this does not exist, then what will happen if we submit this job?
what will be the error code if duplicate key of VSAM file is found?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length ----TRY
Suppose i have 2 steps in my pgm. Step1- creates a file, Step2 - generates report from file in step1, What changes have to be made in Step2, so that if the file in Step1 is empty Step2 should not be executed? No changes to be made to Step1.
Brief description of inline procedure of jcl.
I have 5 steps in my job. say s1, s2, s3, s4, s5 //s1 exec ............. //s2 exec ............ //s3 exec .......... //s4 exec ........ //s5 exec ............... my question is i want to exeute only s2 and s4 steps... please advice me how to do this:
what is use of disp parameter in dd statement?
whats the difference between empty and noempty of GDG?
I need exexution process for JCL programs
If your job fails at particular step then what would be the return code for next steps
In Job, there are 10 steps. If I want to execute the first 6 steps and don't want to execute from 7th to 10th step. What is the solution for this ?
Please go thru the below points and let me know how to code this. 1. Sort the input dataset for the condition : Starting position is 37,length of the field is 13 based on character and in the ascending order , starting from position 25 length of 12 ,character and in the ascending order. Use a temporary dataset to hold the sorted file. 2. Use the temporary file created in the above step as the input for the next step. The next step is to execute a program and produce an output file. Use the temporary file created in the above as work file 1 and the output of the file to be created in this step work file 2.Also, pass a parameter to the program that is to be executed in this step. The parameter should have the current date in YYYYMMDD format. For the sake of convenience, you can use the below Job Name : Sample1 Input DSN : PCABDT11.CABD.TEST.INPUT Temporary DSN : Sort1 Output DSN : PCABDT11.CABD.TEST.OUTPUT Program Name : SAMPLE Thanks in Advance for your response.