What is order of searching of the libraries in a JCL?
Answers were Sorted based on User's Feedback
Answer / guest
First any private libraries as specified in the STEPLIB or
JOBLIB, then the system libraries such as SYS1.LINKLIB. The
system libraries are specified in the link list.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / sukhwinder
First Steplib, if not then Joblib, if not then system lib.
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / vigneshraj
jpa (job pack area )
tasklib
job/steplib
lpa(link pack area)
linklistxx or procxx
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / sunitha
Suppose if we specify multiple datasets in the joblib and
steplib statements then the dataset with largest block size
will be the first one to be searched in order.
| Is This Answer Correct ? | 0 Yes | 4 No |
What are hierarchy levels in jcl?
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.
How can a jobs execution priority be modified?
I have a sequential file in which there are 50 records. Now I want to copy all the 50 records in the reverse order into a new file? The last record in the original file should be the first record in the new file. How can I do it?
which parameter is use to declare the name of dataset in dd statement?
When should DISP=MOD is used?
what is the COND=EVEN ? Can anyone give me an example to explain the usage.
What is the use of the utility DFSRRC00 in the JCL?
hi friends........if u know syntax of IEBEDIT IN JCL
What are the parameter we cannot use in procedure? How many instream we can write in single jcl?
how can i code cond parameter in procedures ? i have a jclk calling a proc which has 10 steps i want to execute from step 5 to step 10 where can i code restrat parameter or cond parameter for ths
I have two input files i/p1 name id-key flag date i/p 2 name id-key date if id-key matches in the both the files then it should write the output file from i/p1 with flag 'Y'. It should be done thru JCL sort card ,Please provide the info on this. ---Note : output file should have all records from i/p1 with proper Flag.